diff options
| author | David Aspinall | 2000-09-29 18:59:42 +0000 |
|---|---|---|
| committer | David Aspinall | 2000-09-29 18:59:42 +0000 |
| commit | 5ca76a5b4fa6abb9cfa1f8b6fc19dd2f54d49edb (patch) | |
| tree | 2264a91a9277299507e47d994d14b310d880d914 /etc | |
| parent | 33ede61aa5a5f7aa7400620ba275664d4a8a9190 (diff) | |
Note about dealing with backslashname directory.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/cvs-tips.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/cvs-tips.txt b/etc/cvs-tips.txt index e175b5ec..ba547602 100644 --- a/etc/cvs-tips.txt +++ b/etc/cvs-tips.txt @@ -101,8 +101,9 @@ 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 | xargs cvs commit -m"Updating branch" -f -r 4.0 + find * -path '*/CVS' -prune -o -path 'CVS' -prune -o -print | tr '\n' '\0' | xargs cvs commit -m"Updating branch" -f -r 4.0 +(The tr is needed because of some nasty filenames, e.g. etc/isa/\backslashname) |
