1git-cvsexportcommit(1) 2====================== 3 4NAME 5---- 6git-cvsexportcommit - Export a commit to a CVS checkout 7 8 9SYNOPSIS 10-------- 11'git-cvsexportcommmit' [-h] [-v] [-c] [-p] [PARENTCOMMIT] COMMITID 12 13 14DESCRIPTION 15----------- 16Exports a commit from GIT to a CVS checkout, making it easier 17to merge patches from a git repository into a CVS repository. 18 19Execute it from the root of the CVS working copy. GIT_DIR must be defined. 20 21It does its best to do the safe thing, it will check that the files are 22unchanged and up to date in the CVS checkout, and it will not autocommit 23by default. 24 25Supports file additions, removals, and commits that affect binary files. 26 27If the commit is a merge commit, you must tell git-cvsapplycommit what parent 28should the changeset be done against. 29 30OPTIONS 31------- 32 33-c:: 34 Commit automatically if the patch applied cleanly. It will not 35 commit if any hunks fail to apply or there were other problems. 36 37-p:: 38 Be pedantic (paranoid) when applying patches. Invokes patch with 39 --fuzz=0 40 41-v:: 42 Verbose. 43 44Author 45------ 46Written by Martin Langhoff <martin@catalyst.net.nz> 47 48Documentation 49-------------- 50Documentation by Martin Langhoff <martin@catalyst.net.nz> 51 52GIT 53--- 54Part of the gitlink:git[7] suite 55