6 git-cvsexportcommit - Export a commit to a CVS checkout
11 'git-cvsexportcommit' [-h] [-v] [-c] [-p] [-a] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
16 Exports a commit from GIT to a CVS checkout, making it easier
17 to merge patches from a git repository into a CVS repository.
19 Execute it from the root of the CVS working copy. GIT_DIR must be defined.
22 It does its best to do the safe thing, it will check that the files are
23 unchanged and up to date in the CVS checkout, and it will not autocommit
26 Supports file additions, removals, and commits that affect binary files.
28 If the commit is a merge commit, you must tell git-cvsapplycommit what parent
29 should the changeset be done against.
35 Commit automatically if the patch applied cleanly. It will not
36 commit if any hunks fail to apply or there were other problems.
39 Be pedantic (paranoid) when applying patches. Invokes patch with
43 Add authorship information. Adds Author line, and Committer (if
44 different from Author) to the message.
47 Force the merge even if the files are not up to date.
50 Prepend the commit message with the provided prefix.
51 Useful for patch series and the like.
59 Merge one patch into CVS::
62 $ export GIT_DIR=~/project/.git
63 $ cd ~/project_cvs_checkout
64 $ git-cvsexportcommit -v <commit-sha1>
65 $ cvs commit -F .mgs <files>
68 Merge pending patches into CVS automatically -- only if you really know what you are doing ::
71 $ export GIT_DIR=~/project/.git
72 $ cd ~/project_cvs_checkout
73 $ git-cherry cvshead myhead | sed -n 's/^+ //p' | xargs -l1 git-cvsexportcommit -c -p -v
78 Written by Martin Langhoff <martin@catalyst.net.nz>
82 Documentation by Martin Langhoff <martin@catalyst.net.nz>
86 Part of the gitlink:git[7] suite