Merge branch 'maint-1.5.5' into maint
[git/dscho.git] / Documentation / git-cvsexportcommit.txt
blob5fa91e51ad70c3fed2bf3170bf14268f410aec5f
1 git-cvsexportcommit(1)
2 ======================
4 NAME
5 ----
6 git-cvsexportcommit - Export a single commit to a CVS checkout
9 SYNOPSIS
10 --------
11 'git-cvsexportcommit' [-h] [-u] [-v] [-c] [-P] [-p] [-a] [-d cvsroot] [-w cvsworkdir] [-W] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
14 DESCRIPTION
15 -----------
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 Specify the name of a CVS checkout using the -w switch or execute it
20 from the root of the CVS working copy. In the latter case GIT_DIR must
21 be defined. See examples below.
23 It does its best to do the safe thing, it will check that the files are
24 unchanged and up to date in the CVS checkout, and it will not autocommit
25 by default.
27 Supports file additions, removals, and commits that affect binary files.
29 If the commit is a merge commit, you must tell git-cvsexportcommit what parent
30 should the changeset be done against.
32 OPTIONS
33 -------
35 -c::
36         Commit automatically if the patch applied cleanly. It will not
37         commit if any hunks fail to apply or there were other problems.
39 -p::
40         Be pedantic (paranoid) when applying patches. Invokes patch with
41         --fuzz=0
43 -a::
44         Add authorship information. Adds Author line, and Committer (if
45         different from Author) to the message.
47 -d::
48         Set an alternative CVSROOT to use.  This corresponds to the CVS
49         -d parameter.  Usually users will not want to set this, except
50         if using CVS in an asymmetric fashion.
52 -f::
53         Force the merge even if the files are not up to date.
55 -P::
56         Force the parent commit, even if it is not a direct parent.
58 -m::
59         Prepend the commit message with the provided prefix.
60         Useful for patch series and the like.
62 -u::
63         Update affected files from CVS repository before attempting export.
65 -w::
66         Specify the location of the CVS checkout to use for the export. This
67         option does not require GIT_DIR to be set before execution if the
68         current directory is within a git repository.  The default is the
69         value of 'cvsexportcommit.cvsdir'.
71 -W::
72         Tell cvsexportcommit that the current working directory is not only
73         a Git checkout, but also the CVS checkout.  Therefore, Git will
74         reset the working directory to the parent commit before proceeding.
76 -v::
77         Verbose.
79 CONFIGURATION
80 -------------
81 cvsexportcommit.cvsdir::
82         The default location of the CVS checkout to use for the export.
84 EXAMPLES
85 --------
87 Merge one patch into CVS::
89 ------------
90 $ export GIT_DIR=~/project/.git
91 $ cd ~/project_cvs_checkout
92 $ git-cvsexportcommit -v <commit-sha1>
93 $ cvs commit -F .msg <files>
94 ------------
96 Merge one patch into CVS (-c and -w options). The working directory is within the Git Repo::
98 ------------
99         $ git-cvsexportcommit -v -c -w ~/project_cvs_checkout <commit-sha1>
100 ------------
102 Merge pending patches into CVS automatically -- only if you really know what you are doing::
104 ------------
105 $ export GIT_DIR=~/project/.git
106 $ cd ~/project_cvs_checkout
107 $ git-cherry cvshead myhead | sed -n 's/^+ //p' | xargs -l1 git-cvsexportcommit -c -p -v
108 ------------
110 Author
111 ------
112 Written by Martin Langhoff <martin@catalyst.net.nz> and others.
114 Documentation
115 --------------
116 Documentation by Martin Langhoff <martin@catalyst.net.nz> and others.
120 Part of the linkgit:git[1] suite