diff options
author | Simon 'corecode' Schubert <corecode@fs.ei.tum.de> | 2007-02-18 18:17:08 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-20 23:58:27 -0800 |
commit | 4a6b9bb60ab3cdb3a749ec43763845a7a60d40d4 (patch) | |
tree | e2ecac0a1e34cd8a96009d3e2132c68f897d46bf /Documentation/git-cvsexportcommit.txt | |
parent | d2cd696322011eb13125930e747f0d2a7778b992 (diff) | |
download | git-4a6b9bb60ab3cdb3a749ec43763845a7a60d40d4.tar.gz |
Allow passing of an alternative CVSROOT via -d.
This is necessary if using CVS in an asymmetric fashion, i.e. when the
CVSROOT you are checking out from differs from the CVSROOT you have to
commit to.
Signed-off-by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-cvsexportcommit.txt')
-rw-r--r-- | Documentation/git-cvsexportcommit.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-cvsexportcommit.txt b/Documentation/git-cvsexportcommit.txt index 27d531b888..555b8234f0 100644 --- a/Documentation/git-cvsexportcommit.txt +++ b/Documentation/git-cvsexportcommit.txt @@ -8,7 +8,7 @@ git-cvsexportcommit - Export a single commit to a CVS checkout SYNOPSIS -------- -'git-cvsexportcommit' [-h] [-v] [-c] [-P] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID +'git-cvsexportcommit' [-h] [-v] [-c] [-P] [-p] [-a] [-d cvsroot] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID DESCRIPTION @@ -43,6 +43,11 @@ OPTIONS Add authorship information. Adds Author line, and Committer (if different from Author) to the message. +-d:: + Set an alternative CVSROOT to use. This corresponds to the CVS + -d parameter. Usually users will not want to set this, except + if using CVS in an asymmetric fashion. + -f:: Force the merge even if the files are not up to date. |