aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/cvs-tips.txt
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-29 19:00:15 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-29 19:00:15 +0000
commitaa397fe7b1e4974a966414f44d24529933fb58eb (patch)
tree21297d00433e8f5b65acecb3419ac690d7ce622d /etc/cvs-tips.txt
parentbd48272feb9b54b364cf28385d49571111010296 (diff)
Note about dealing with backslashname directory.
Diffstat (limited to 'etc/cvs-tips.txt')
-rw-r--r--etc/cvs-tips.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/cvs-tips.txt b/etc/cvs-tips.txt
index ba547602..b0128258 100644
--- a/etc/cvs-tips.txt
+++ b/etc/cvs-tips.txt
@@ -101,7 +101,7 @@ This is needed to solve "localssh.dcs" versus "ssh.dcs" problem.
Moving to a new branch
======================
- find * -path '*/CVS' -prune -o -path 'CVS' -prune -o -print | tr '\n' '\0' | xargs cvs commit -m"Updating branch" -f -r 4.0
+ find * -path '*/CVS' -prune -o -path 'CVS' -prune -o -print | tr '\n' '\0' | xargs -0 cvs commit -m"Updating branch" -f -r 4.0
(The tr is needed because of some nasty filenames, e.g. etc/isa/\backslashname)