Autogenerated man pages for v1.1.6-g1506
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 30 Jan 2006 07:39:40 +0000 (23:39 -0800)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 30 Jan 2006 07:39:40 +0000 (23:39 -0800)
man1/git-cvsexportcommit.1

index 3c50de0..fa85115 100755 (executable)
@@ -31,7 +31,7 @@ git\-cvsexportcommmit [\-h] [\-v] [\-c] [\-p] [PARENTCOMMIT] COMMITID
 Exports a commit from GIT to a CVS checkout, making it easier to merge patches from a git repository into a CVS repository\&.
 
 
-Execute it from the root of the CVS working copy\&. GIT_DIR must be defined\&.
+Execute it from the root of the CVS working copy\&. GIT_DIR must be defined\&. See examples below\&.
 
 
 It does its best to do the safe thing, it will check that the files are unchanged and up to date in the CVS checkout, and it will not autocommit by default\&.
@@ -56,6 +56,23 @@ Be pedantic (paranoid) when applying patches\&. Invokes patch with \-\-fuzz=0
 \-v
 Verbose\&.
 
+.SH "EXAMPLES"
+
+.TP
+Merge one patch into CVS
+
+.IP
+$ export GIT_DIR=~/project/\&.git
+$ cd ~/project_cvs_checkout
+$ git\-cvsexportcommit \-v <commit\-sha1>
+$ cvs commit \-F \&.mgs <files>
+.TP
+Merge pending patches into CVS automatically -- only if you really know what you are doing
+
+.IP
+$ export GIT_DIR=~/project/\&.git
+$ cd ~/project_cvs_checkout
+$ git\-cherry cvshead myhead | sed \-n 's/^+ //p' | xargs \-l1 git\-cvsexportcommit \-c \-p \-v
 .SH "AUTHOR"