From: Junio C Hamano Date: Mon, 30 Jan 2006 07:39:40 +0000 (-0800) Subject: Autogenerated man pages for v1.1.6-g1506 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=96ed04d9d9d6c176a3691a4713da2e96adefd982;p=git.git Autogenerated man pages for v1.1.6-g1506 --- diff --git a/man1/git-cvsexportcommit.1 b/man1/git-cvsexportcommit.1 index 3c50de07a..fa851158d 100755 --- a/man1/git-cvsexportcommit.1 +++ b/man1/git-cvsexportcommit.1 @@ -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 +$ cvs commit \-F \&.mgs +.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"