Autogenerated manpages for v2.47.0-318-g04eaf
[git-manpages.git] / man1 / git-cvsexportcommit.1
blob357f09c3fbea11e5acbafe9e95019995e5b52807
1 '\" t
2 .\"     Title: git-cvsexportcommit
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-11-22
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.318.g04eaff62f2
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CVSEXPORTCOMMIT" "1" "2024-11-22" "Git 2\&.47\&.0\&.318\&.g04eaff" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-cvsexportcommit \- Export a single commit to a CVS checkout
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit cvsexportcommit\fR [\-h] [\-u] [\-v] [\-c] [\-P] [\-p] [\-a] [\-d <cvsroot>]
36         [\-w <cvs\-workdir>] [\-W] [\-f] [\-m <msgprefix>] [<parent\-commit>] <commit\-id>
37 .fi
38 .SH "DESCRIPTION"
39 .sp
40 Exports a commit from Git to a CVS checkout, making it easier to merge patches from a Git repository into a CVS repository\&.
41 .sp
42 Specify the name of a CVS checkout using the \-w switch or execute it from the root of the CVS working copy\&. In the latter case GIT_DIR must be defined\&. See examples below\&.
43 .sp
44 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\&.
45 .sp
46 Supports file additions, removals, and commits that affect binary files\&.
47 .sp
48 If the commit is a merge commit, you must tell \fIgit cvsexportcommit\fR what parent the changeset should be done against\&.
49 .SH "OPTIONS"
50 .PP
51 \-c
52 .RS 4
53 Commit automatically if the patch applied cleanly\&. It will not commit if any hunks fail to apply or there were other problems\&.
54 .RE
55 .PP
56 \-p
57 .RS 4
58 Be pedantic (paranoid) when applying patches\&. Invokes patch with \-\-fuzz=0
59 .RE
60 .PP
61 \-a
62 .RS 4
63 Add authorship information\&. Adds Author line, and Committer (if different from Author) to the message\&.
64 .RE
65 .PP
66 \-d
67 .RS 4
68 Set an alternative CVSROOT to use\&. This corresponds to the CVS \-d parameter\&. Usually users will not want to set this, except if using CVS in an asymmetric fashion\&.
69 .RE
70 .PP
71 \-f
72 .RS 4
73 Force the merge even if the files are not up to date\&.
74 .RE
75 .PP
76 \-P
77 .RS 4
78 Force the parent commit, even if it is not a direct parent\&.
79 .RE
80 .PP
81 \-m
82 .RS 4
83 Prepend the commit message with the provided prefix\&. Useful for patch series and the like\&.
84 .RE
85 .PP
86 \-u
87 .RS 4
88 Update affected files from CVS repository before attempting export\&.
89 .RE
90 .PP
91 \-k
92 .RS 4
93 Reverse CVS keyword expansion (e\&.g\&. $Revision: 1\&.2\&.3\&.4$ becomes $Revision$) in working CVS checkout before applying patch\&.
94 .RE
95 .PP
96 \-w
97 .RS 4
98 Specify the location of the CVS checkout to use for the export\&. This option does not require GIT_DIR to be set before execution if the current directory is within a Git repository\&. The default is the value of
99 \fIcvsexportcommit\&.cvsdir\fR\&.
103 .RS 4
104 Tell cvsexportcommit that the current working directory is not only a Git checkout, but also the CVS checkout\&. Therefore, Git will reset the working directory to the parent commit before proceeding\&.
108 .RS 4
109 Verbose\&.
111 .SH "CONFIGURATION"
113 cvsexportcommit\&.cvsdir
114 .RS 4
115 The default location of the CVS checkout to use for the export\&.
117 .SH "EXAMPLES"
119 Merge one patch into CVS
120 .RS 4
122 .if n \{\
123 .RS 4
126 $ export GIT_DIR=~/project/\&.git
127 $ cd ~/project_cvs_checkout
128 $ git cvsexportcommit \-v <commit\-sha1>
129 $ cvs commit \-F \&.msg <files>
131 .if n \{\
136 Merge one patch into CVS (\-c and \-w options)\&. The working directory is within the Git Repo
137 .RS 4
139 .if n \{\
140 .RS 4
143         $ git cvsexportcommit \-v \-c \-w ~/project_cvs_checkout <commit\-sha1>
145 .if n \{\
150 Merge pending patches into CVS automatically \(em only if you really know what you are doing
151 .RS 4
153 .if n \{\
154 .RS 4
157 $ export GIT_DIR=~/project/\&.git
158 $ cd ~/project_cvs_checkout
159 $ git cherry cvshead myhead | sed \-n \*(Aqs/^+ //p\*(Aq | xargs \-l1 git cvsexportcommit \-c \-p \-v
161 .if n \{\
165 .SH "GIT"
167 Part of the \fBgit\fR(1) suite