diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-08-17 11:19:20 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-17 12:13:12 -0700 |
commit | fbfd60d65142848299513dfa6b477d0f5299cc15 (patch) | |
tree | ede2321852443a61f5383a350475e088e4d8fe26 /Documentation | |
parent | 35cc4bcd10862db190df9685b7ad221f2a25404f (diff) | |
download | git-fbfd60d65142848299513dfa6b477d0f5299cc15.tar.gz git-fbfd60d65142848299513dfa6b477d0f5299cc15.tar.xz |
[PATCH] Also handle CVS branches with a '/' in their name
I track a CVS project which has a branch with a '/' in the branch name.
Since git wants the branch name to be a file name at the same time,
substitute that character to a '-' by default (override with "-s <subst>").
This should work well, despite the fact that a division and a difference
are completely different :-)
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-cvsimport-script.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-cvsimport-script.txt b/Documentation/git-cvsimport-script.txt index 61713d859..ae46b2f07 100644 --- a/Documentation/git-cvsimport-script.txt +++ b/Documentation/git-cvsimport-script.txt @@ -11,7 +11,8 @@ SYNOPSIS -------- 'git-cvsimport-script' [ -o <branch-for-HEAD> ] [ -h ] [ -v ] [ -d <CVSROOT> ] [ -p <options-for-cvsps> ] - [ -C <GIT_repository> ] [ -i ] [ -k ] [ <CVS_module> ] + [ -C <GIT_repository> ] [ -i ] [ -k ] + [ -s <subst> ] [ <CVS_module> ] DESCRIPTION @@ -69,6 +70,9 @@ OPTIONS -z <fuzz>:: Pass the timestamp fuzz factor to cvsps. +-s <subst>:: + Substitute the character "/" in branch names with <subst> + OUTPUT ------ If '-v' is specified, the script reports what it is doing. |