summaryrefslogtreecommitdiff
path: root/Documentation/git-cvsexportcommit.txt
blob: d30435a9e4c6ec9797110869c202aea2f8e257a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
git-cvsexportcommit(1)
======================
 
NAME
----
git-cvsexportcommit - Export a commit to a CVS checkout
 
 
SYNOPSIS
--------
'git-cvsexportcommmit' [-h] [-v] [-c] [-p] [PARENTCOMMIT] COMMITID
 
 
DESCRIPTION
-----------
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. 
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.
 
Supports file additions, removals, and commits that affect binary files.
 
If the commit is a merge commit, you must tell git-cvsapplycommit what parent
should the changeset be done against. 
 
OPTIONS
-------
 
-c::
	Commit automatically if the patch applied cleanly. It will not
	commit if any hunks fail to apply or there were other problems.
 
-p::
	Be pedantic (paranoid) when applying patches. Invokes patch with 
	--fuzz=0
 
-v::
	Verbose.
 
EXAMPLES
--------
 
Merge one patch into CVS::
+
------------
$ export GIT_DIR=~/project/.git
$ cd ~/project_cvs_checkout
$ git-cvsexportcommit -v <commit-sha1>
$ cvs commit -F .mgs <files> 
------------
 
Merge pending patches into CVS automatically -- only if you really know what you are doing ::
+
------------
$ export GIT_DIR=~/project/.git
$ cd ~/project_cvs_checkout
$ git-cherry cvshead myhead | sed -n 's/^+ //p' | xargs -l1 git-cvsexportcommit -c -p -v
------------
 
Author
------
Written by Martin Langhoff <martin@catalyst.net.nz>
 
Documentation
--------------
Documentation by Martin Langhoff <martin@catalyst.net.nz>
 
GIT
---
Part of the gitlink:git[7] suite