Blame


1 5c860e29 2018-03-12 stsp .\"
2 5c860e29 2018-03-12 stsp .\" Copyright (c) 2017 Martin Pieuchot
3 5d56da81 2019-01-13 stsp .\" Copyright (c) 2018, 2019 Stefan Sperling
4 5c860e29 2018-03-12 stsp .\"
5 5c860e29 2018-03-12 stsp .\" Permission to use, copy, modify, and distribute this software for any
6 5c860e29 2018-03-12 stsp .\" purpose with or without fee is hereby granted, provided that the above
7 5c860e29 2018-03-12 stsp .\" copyright notice and this permission notice appear in all copies.
8 5c860e29 2018-03-12 stsp .\"
9 5c860e29 2018-03-12 stsp .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5c860e29 2018-03-12 stsp .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5c860e29 2018-03-12 stsp .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5c860e29 2018-03-12 stsp .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5c860e29 2018-03-12 stsp .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5c860e29 2018-03-12 stsp .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5c860e29 2018-03-12 stsp .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5c860e29 2018-03-12 stsp .\"
17 5c860e29 2018-03-12 stsp .Dd $Mdocdate$
18 5c860e29 2018-03-12 stsp .Dt GOT 1
19 5c860e29 2018-03-12 stsp .Os
20 5c860e29 2018-03-12 stsp .Sh NAME
21 5c860e29 2018-03-12 stsp .Nm got
22 8e13c46f 2019-08-05 stsp .Nd Game of Trees
23 5c860e29 2018-03-12 stsp .Sh SYNOPSIS
24 0bb8a95e 2018-03-12 stsp .Nm
25 5c860e29 2018-03-12 stsp .Ar command
26 1b6b95a8 2018-03-12 stsp .Op Fl h
27 5c860e29 2018-03-12 stsp .Op Ar arg ...
28 5c860e29 2018-03-12 stsp .Sh DESCRIPTION
29 5c860e29 2018-03-12 stsp .Nm
30 4dfb2f0f 2019-03-26 stsp is a version control system which stores the history of tracked files
31 4dfb2f0f 2019-03-26 stsp in a Git repository, as used by the Git version control system.
32 285dc8a4 2018-03-13 stsp This repository format is described in
33 5e5560e1 2018-08-01 stsp .Xr git-repository 5 .
34 285dc8a4 2018-03-13 stsp .Pp
35 4129c201 2018-03-13 stsp .Nm
36 4129c201 2018-03-13 stsp is a
37 ae73e26f 2019-03-26 stsp .Dq distributed
38 4129c201 2018-03-13 stsp version control system because every copy of a repository is writeable.
39 4129c201 2018-03-13 stsp Modifications made to files can be synchronized between repositories
40 97925469 2018-03-17 stsp at any time.
41 4129c201 2018-03-13 stsp .Pp
42 285dc8a4 2018-03-13 stsp Files managed by
43 285dc8a4 2018-03-13 stsp .Nm
44 4129c201 2018-03-13 stsp must be checked out from the repository for modification.
45 285dc8a4 2018-03-13 stsp Checked out files are stored in a
46 285dc8a4 2018-03-13 stsp .Em work tree
47 c5867b47 2018-03-13 stsp which can be placed at an arbitrary directory in the filesystem hierarchy.
48 fb2921d0 2019-03-26 stsp The on-disk format of this work tree is described in
49 285dc8a4 2018-03-13 stsp .Xr got-worktree 5 .
50 285dc8a4 2018-03-13 stsp .Pp
51 285dc8a4 2018-03-13 stsp .Nm
52 285dc8a4 2018-03-13 stsp provides global and command-specific options.
53 bc3056e3 2019-08-18 stsp Global options must precede the command name, and are as follows:
54 1b6b95a8 2018-03-12 stsp .Bl -tag -width tenletters
55 1b6b95a8 2018-03-12 stsp .It Fl h
56 fef8a0d3 2019-08-04 stsp Display usage information and exit immediately.
57 53ccebc2 2019-07-30 stsp .It Fl V
58 53ccebc2 2019-07-30 stsp Display program version and exit immediately.
59 1b6b95a8 2018-03-12 stsp .El
60 1b6b95a8 2018-03-12 stsp .Pp
61 38e11793 2018-06-13 stsp The commands for
62 38e11793 2018-06-13 stsp .Nm
63 38e11793 2018-06-13 stsp are as follows:
64 0bb8a95e 2018-03-12 stsp .Bl -tag -width checkout
65 09ea71ba 2019-07-27 stsp .It Cm init Ar repository-path
66 2c7829a4 2019-06-17 stsp Create a new empty repository at the specified
67 09ea71ba 2019-07-27 stsp .Ar repository-path .
68 3ce1b845 2019-07-15 stsp .Pp
69 3ce1b845 2019-07-15 stsp After
70 3ce1b845 2019-07-15 stsp .Cm got init ,
71 3ce1b845 2019-07-15 stsp the
72 3ce1b845 2019-07-15 stsp .Cm got import
73 3ce1b845 2019-07-15 stsp command must be used to populate the empty repository before
74 3ce1b845 2019-07-15 stsp .Cm got checkout
75 3ce1b845 2019-07-15 stsp can be used.
76 bc26cce8 2019-08-04 stsp .It Cm in
77 bc26cce8 2019-08-04 stsp Short alias for
78 bc26cce8 2019-08-04 stsp .Cm init .
79 dfc23429 2019-08-11 stsp .It Cm import Oo Fl b Ar branch Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl I Ar pattern Oc Ar directory
80 3ce1b845 2019-07-15 stsp Create an initial commit in a repository from the file hierarchy
81 3ce1b845 2019-07-15 stsp within the specified
82 3ce1b845 2019-07-15 stsp .Ar directory .
83 3ce1b845 2019-07-15 stsp The created commit will not have any parent commits, i.e. it will be a
84 3ce1b845 2019-07-15 stsp root commit.
85 3ce1b845 2019-07-15 stsp Also create a new reference which provides a branch name for the newly
86 3ce1b845 2019-07-15 stsp created commit.
87 21a44f98 2019-07-15 stsp Show the path of each imported file to indicate progress.
88 3ce1b845 2019-07-15 stsp .Pp
89 21a44f98 2019-07-15 stsp The
90 21a44f98 2019-07-15 stsp .Cm got import
91 21a44f98 2019-07-15 stsp command requires the
92 21a44f98 2019-07-15 stsp .Ev GOT_AUTHOR
93 21a44f98 2019-07-15 stsp environment variable to be set.
94 3ce1b845 2019-07-15 stsp .Pp
95 3ce1b845 2019-07-15 stsp The options for
96 3ce1b845 2019-07-15 stsp .Cm got import
97 3ce1b845 2019-07-15 stsp are as follows:
98 3ce1b845 2019-07-15 stsp .Bl -tag -width Ds
99 3ce1b845 2019-07-15 stsp .It Fl b Ar branch
100 3ce1b845 2019-07-15 stsp Create the specified
101 3ce1b845 2019-07-15 stsp .Ar branch
102 3ce1b845 2019-07-15 stsp instead of creating the default branch
103 3ce1b845 2019-07-15 stsp .Dq master .
104 3ce1b845 2019-07-15 stsp Use of this option is required if the
105 3ce1b845 2019-07-15 stsp .Dq master
106 3ce1b845 2019-07-15 stsp branch already exists.
107 3ce1b845 2019-07-15 stsp .It Fl m Ar message
108 3ce1b845 2019-07-15 stsp Use the specified log message when creating the new commit.
109 3ce1b845 2019-07-15 stsp Without the
110 3ce1b845 2019-07-15 stsp .Fl m
111 3ce1b845 2019-07-15 stsp option,
112 3ce1b845 2019-07-15 stsp .Cm got import
113 3ce1b845 2019-07-15 stsp opens a temporary file in an editor where a log message can be written.
114 3ce1b845 2019-07-15 stsp .It Fl r Ar repository-path
115 3ce1b845 2019-07-15 stsp Use the repository at the specified path.
116 3ce1b845 2019-07-15 stsp If not specified, assume the repository is located at or above the current
117 3ce1b845 2019-07-15 stsp working directory.
118 3ce1b845 2019-07-15 stsp .It Fl I Ar pattern
119 3ce1b845 2019-07-15 stsp Ignore files or directories with a name which matches the specified
120 3ce1b845 2019-07-15 stsp .Ar pattern .
121 3ce1b845 2019-07-15 stsp This option may be specified multiple times to build a list of ignore patterns.
122 3ce1b845 2019-07-15 stsp The
123 3ce1b845 2019-07-15 stsp .Ar pattern
124 3ce1b845 2019-07-15 stsp follows the globbing rules documented in
125 3ce1b845 2019-07-15 stsp .Xr glob 7 .
126 3ce1b845 2019-07-15 stsp .El
127 bc26cce8 2019-08-04 stsp .It Cm im
128 bc26cce8 2019-08-04 stsp Short alias for
129 bc26cce8 2019-08-04 stsp .Cm import .
130 dfc23429 2019-08-11 stsp .It Cm checkout Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Oo Fl p Ar path-prefix Oc Ar repository-path Op Ar work-tree-path
131 0bb8a95e 2018-03-12 stsp Copy files from a repository into a new work tree.
132 5d7c1dab 2018-04-01 stsp If the
133 5d7c1dab 2018-04-01 stsp .Ar work tree path
134 c844a238 2019-02-06 stsp is not specified, either use the last component of
135 5d7c1dab 2018-04-01 stsp .Ar repository path ,
136 5d7c1dab 2018-04-01 stsp or if a
137 5d7c1dab 2018-04-01 stsp .Ar path prefix
138 c844a238 2019-02-06 stsp was specified use the last component of
139 5d7c1dab 2018-04-01 stsp .Ar path prefix .
140 38e11793 2018-06-13 stsp .Pp
141 38e11793 2018-06-13 stsp The options for
142 38e11793 2018-06-13 stsp .Cm got checkout
143 38e11793 2018-06-13 stsp are as follows:
144 38e11793 2018-06-13 stsp .Bl -tag -width Ds
145 08573d5b 2019-05-14 stsp .It Fl b Ar branch
146 3c575567 2019-07-28 stsp Check out files from a commit on the specified
147 08573d5b 2019-05-14 stsp .Ar branch .
148 08573d5b 2019-05-14 stsp If this option is not specified, a branch resolved via the repository's HEAD
149 08573d5b 2019-05-14 stsp reference will be used.
150 8069f636 2019-01-12 stsp .It Fl c Ar commit
151 8069f636 2019-01-12 stsp Check out files from the specified
152 3c575567 2019-07-28 stsp .Ar commit
153 3c575567 2019-07-28 stsp on the selected branch.
154 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
155 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
156 0e1b0230 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
157 0e1b0230 2019-07-07 stsp automatically, provided the abbreviation is unique.
158 08573d5b 2019-05-14 stsp If this option is not specified, the most recent commit on the selected
159 08573d5b 2019-05-14 stsp branch will be used.
160 38e11793 2018-06-13 stsp .It Fl p Ar path-prefix
161 38e11793 2018-06-13 stsp Restrict the work tree to a subset of the repository's tree hierarchy.
162 38e11793 2018-06-13 stsp Only files beneath the specified
163 38e11793 2018-06-13 stsp .Ar path-prefix
164 38e11793 2018-06-13 stsp will be checked out.
165 38e11793 2018-06-13 stsp .El
166 97b3a7be 2019-07-09 stsp .It Cm co
167 97b3a7be 2019-07-09 stsp Short alias for
168 97b3a7be 2019-07-09 stsp .Cm checkout .
169 dfc23429 2019-08-11 stsp .It Cm update Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Op Ar path ...
170 024e9686 2019-05-14 stsp Update an existing work tree to a different commit.
171 7f838b36 2019-02-08 stsp Show the status of each affected file, using the following status codes:
172 7f838b36 2019-02-08 stsp .Bl -column YXZ description
173 7f838b36 2019-02-08 stsp .It U Ta file was updated and contained no local changes
174 7f838b36 2019-02-08 stsp .It G Ta file was updated and local changes were merged cleanly
175 7f838b36 2019-02-08 stsp .It C Ta file was updated and conflicts occurred during merge
176 7f838b36 2019-02-08 stsp .It D Ta file was deleted
177 7f838b36 2019-02-08 stsp .It A Ta new file was added
178 1dd86744 2019-08-12 anthony .It \(a~ Ta versioned file is obstructed by a non-regular file
179 a378724f 2019-02-10 stsp .It ! Ta a missing versioned file was restored
180 7f838b36 2019-02-08 stsp .El
181 7f838b36 2019-02-08 stsp .Pp
182 f2ea84fa 2019-07-27 stsp If no
183 c4cdcb68 2019-04-03 stsp .Ar path
184 f2ea84fa 2019-07-27 stsp is specified, update the entire work tree.
185 f2ea84fa 2019-07-27 stsp Otherwise, restrict the update operation to files at or within the
186 f2ea84fa 2019-07-27 stsp specified paths.
187 f2ea84fa 2019-07-27 stsp Each path is required to exist in the update operation's target commit.
188 f2ea84fa 2019-07-27 stsp Files in the work tree outside specified paths will remain unchanged and
189 f2ea84fa 2019-07-27 stsp will retain their previously recorded base commit.
190 f2cf8fbb 2019-04-04 stsp Some
191 f2cf8fbb 2019-04-04 stsp .Nm
192 f2cf8fbb 2019-04-04 stsp commands may refuse to run while the work tree contains files from
193 c4cdcb68 2019-04-03 stsp multiple base commits.
194 f2cf8fbb 2019-04-04 stsp The base commit of such a work tree can be made consistent by running
195 47ec7be7 2019-05-12 stsp .Cm got update
196 47ec7be7 2019-05-12 stsp across the entire work tree.
197 024e9686 2019-05-14 stsp Specifying a
198 024e9686 2019-05-14 stsp .Ar path
199 024e9686 2019-05-14 stsp is incompatible with the
200 024e9686 2019-05-14 stsp .Fl b
201 024e9686 2019-05-14 stsp option.
202 7f838b36 2019-02-08 stsp .Pp
203 4ed9f614 2019-08-04 stsp .Cm got update
204 4ed9f614 2019-08-04 stsp cannot update paths with staged changes.
205 4ed9f614 2019-08-04 stsp If changes have been staged with
206 4ed9f614 2019-08-04 stsp .Cm got stage ,
207 bc3056e3 2019-08-18 stsp these changes must first be committed with
208 4ed9f614 2019-08-04 stsp .Cm got commit
209 4ed9f614 2019-08-04 stsp or unstaged with
210 4ed9f614 2019-08-04 stsp .Cm got unstage .
211 4ed9f614 2019-08-04 stsp .Pp
212 507dc3bb 2018-12-29 stsp The options for
213 507dc3bb 2018-12-29 stsp .Cm got update
214 507dc3bb 2018-12-29 stsp are as follows:
215 507dc3bb 2018-12-29 stsp .Bl -tag -width Ds
216 024e9686 2019-05-14 stsp .It Fl b Ar branch
217 024e9686 2019-05-14 stsp Switch the work tree's branch reference to the specified
218 024e9686 2019-05-14 stsp .Ar branch
219 024e9686 2019-05-14 stsp before updating the work tree.
220 024e9686 2019-05-14 stsp This option requires that all paths in the work tree are updated.
221 507dc3bb 2018-12-29 stsp .It Fl c Ar commit
222 507dc3bb 2018-12-29 stsp Update the work tree to the specified
223 507dc3bb 2018-12-29 stsp .Ar commit .
224 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
225 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
226 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
227 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
228 024e9686 2019-05-14 stsp If this option is not specified, the most recent commit on the work tree's
229 024e9686 2019-05-14 stsp branch will be used.
230 507dc3bb 2018-12-29 stsp .El
231 97b3a7be 2019-07-09 stsp .It Cm up
232 97b3a7be 2019-07-09 stsp Short alias for
233 97b3a7be 2019-07-09 stsp .Cm update .
234 dfc23429 2019-08-11 stsp .It Cm status Op Ar path ...
235 6cd959e6 2019-03-26 stsp Show the current modification status of files in a work tree,
236 6bad629b 2019-02-04 stsp using the following status codes:
237 6bad629b 2019-02-04 stsp .Bl -column YXZ description
238 6bad629b 2019-02-04 stsp .It M Ta modified file
239 079890a9 2019-03-26 stsp .It A Ta file scheduled for addition in next commit
240 079890a9 2019-03-26 stsp .It D Ta file scheduled for deletion in next commit
241 7154f6ce 2019-03-27 stsp .It C Ta modified or added file which contains merge conflicts
242 6bad629b 2019-02-04 stsp .It ! Ta versioned file was expected on disk but is missing
243 1dd86744 2019-08-12 anthony .It \(a~ Ta versioned file is obstructed by a non-regular file
244 6bad629b 2019-02-04 stsp .It ? Ta unversioned item not tracked by
245 6bad629b 2019-02-04 stsp .Nm
246 6bad629b 2019-02-04 stsp .El
247 6bad629b 2019-02-04 stsp .Pp
248 72ea6654 2019-07-27 stsp If no
249 927df6b7 2019-02-10 stsp .Ar path
250 72ea6654 2019-07-27 stsp is specified, show modifications in the entire work tree.
251 72ea6654 2019-07-27 stsp Otherwise, show modifications at or within the specified paths.
252 4ed9f614 2019-08-04 stsp .Pp
253 4ed9f614 2019-08-04 stsp If changes have been staged with
254 4ed9f614 2019-08-04 stsp .Cm got stage ,
255 4ed9f614 2019-08-04 stsp staged changes are shown in the second output column, using the following
256 4ed9f614 2019-08-04 stsp status codes:
257 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
258 4ed9f614 2019-08-04 stsp .It M Ta file modification is staged
259 4ed9f614 2019-08-04 stsp .It A Ta file addition is staged
260 4ed9f614 2019-08-04 stsp .It D Ta file deletion is staged
261 4ed9f614 2019-08-04 stsp .El
262 4ed9f614 2019-08-04 stsp .Pp
263 95ac67f0 2019-08-08 stsp Changes created on top of staged changes are indicated in the first column:
264 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
265 95ac67f0 2019-08-08 stsp .It MM Ta file was modified after earlier changes have been staged
266 95ac67f0 2019-08-08 stsp .It MA Ta file was modified after having been staged for addition
267 4ed9f614 2019-08-04 stsp .El
268 6841da00 2019-08-08 stsp .Pp
269 6841da00 2019-08-08 stsp For compatibility with
270 6841da00 2019-08-08 stsp .Xr cvs 1 ,
271 6841da00 2019-08-08 stsp .Cm got status
272 6841da00 2019-08-08 stsp parses
273 6841da00 2019-08-08 stsp .Pa .cvsignore
274 6841da00 2019-08-08 stsp files in each traversed directory and will not display unversioned files
275 6841da00 2019-08-08 stsp which match
276 6841da00 2019-08-08 stsp .Xr glob 7
277 6841da00 2019-08-08 stsp ignore patterns contained in
278 6841da00 2019-08-08 stsp .Pa .cvsignore
279 6841da00 2019-08-08 stsp files.
280 6841da00 2019-08-08 stsp Unlike
281 6841da00 2019-08-08 stsp .Xr cvs 1 ,
282 6841da00 2019-08-08 stsp .Cm got status
283 6841da00 2019-08-08 stsp only supports a single ignore pattern per line.
284 97b3a7be 2019-07-09 stsp .It Cm st
285 97b3a7be 2019-07-09 stsp Short alias for
286 97b3a7be 2019-07-09 stsp .Cm status .
287 dfc23429 2019-08-11 stsp .It Cm log Oo Fl c Ar commit Oc Oo Fl C Ar number Oc Oo Fl f Oc Oo Fl l Ar N Oc Oo Fl p Oc Oo Fl r Ar repository-path Oc Op Ar path
288 38e11793 2018-06-13 stsp Display history of a repository.
289 04ca23f4 2018-07-16 stsp If a
290 04ca23f4 2018-07-16 stsp .Ar path
291 04ca23f4 2018-07-16 stsp is specified, show only commits which modified this path.
292 38e11793 2018-06-13 stsp .Pp
293 38e11793 2018-06-13 stsp The options for
294 38e11793 2018-06-13 stsp .Cm got log
295 38e11793 2018-06-13 stsp are as follows:
296 38e11793 2018-06-13 stsp .Bl -tag -width Ds
297 38e11793 2018-06-13 stsp .It Fl c Ar commit
298 38e11793 2018-06-13 stsp Start traversing history at the specified
299 38e11793 2018-06-13 stsp .Ar commit .
300 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
301 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
302 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
303 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
304 1cc14b9f 2019-05-14 stsp If this option is not specified, default to the work tree's current branch
305 1cc14b9f 2019-05-14 stsp if invoked in a work tree, or to the repository's HEAD reference.
306 c0cc5c62 2018-10-18 stsp .It Fl C Ar number
307 c0cc5c62 2018-10-18 stsp Set the number of context lines shown in diffs with
308 c0cc5c62 2018-10-18 stsp .Fl p .
309 c0cc5c62 2018-10-18 stsp By default, 3 lines of context are shown.
310 cc54c501 2019-07-15 stsp .It Fl f
311 cc54c501 2019-07-15 stsp Restrict history traversal to the first parent of each commit.
312 cc54c501 2019-07-15 stsp This shows the linear history of the current branch only.
313 cc54c501 2019-07-15 stsp Merge commits which affected the current branch will be shown but
314 cc54c501 2019-07-15 stsp individual commits which originated on other branches will be omitted.
315 6238ee32 2018-06-13 stsp .It Fl l Ar N
316 6238ee32 2018-06-13 stsp Limit history traversal to a given number of commits.
317 b1ebc001 2019-08-13 stsp If this option is not specified, a default limit value of zero is used,
318 b1ebc001 2019-08-13 stsp which is treated as an unbounded limit.
319 b1ebc001 2019-08-13 stsp The
320 b1ebc001 2019-08-13 stsp .Ev GOT_LOG_DEFAULT_LIMIT
321 b1ebc001 2019-08-13 stsp environment variable may be set to change this default value.
322 6238ee32 2018-06-13 stsp .It Fl p
323 6238ee32 2018-06-13 stsp Display the patch of modifications made in each commit.
324 04ca23f4 2018-07-16 stsp .It Fl r Ar repository-path
325 04ca23f4 2018-07-16 stsp Use the repository at the specified path.
326 04ca23f4 2018-07-16 stsp If not specified, assume the repository is located at or above the current
327 04ca23f4 2018-07-16 stsp working directory.
328 e9cf2e30 2019-02-05 stsp If this directory is a
329 e9cf2e30 2019-02-05 stsp .Nm
330 e9cf2e30 2019-02-05 stsp work tree, use the repository path associated with this work tree.
331 38e11793 2018-06-13 stsp .El
332 dfc23429 2019-08-11 stsp .It Cm diff Oo Fl C Ar number Oc Oo Fl r Ar repository-path Oc Oo Fl s Oc Op Ar object1 Ar object2 | Ar path
333 927df6b7 2019-02-10 stsp When invoked within a work tree with less than two arguments, display
334 927df6b7 2019-02-10 stsp uncommitted changes in the work tree.
335 927df6b7 2019-02-10 stsp If a
336 927df6b7 2019-02-10 stsp .Ar path
337 927df6b7 2019-02-10 stsp is specified, only show changes within this path.
338 927df6b7 2019-02-10 stsp .Pp
339 d24820bf 2019-08-11 stsp If two arguments are provided, treat each argument as a reference, a tag
340 d24820bf 2019-08-11 stsp name, or an object ID SHA1 hash, and display differences between the
341 d24820bf 2019-08-11 stsp corresponding objects.
342 3f8b7d6a 2018-04-01 stsp Both objects must be of the same type (blobs, trees, or commits).
343 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
344 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
345 c0cc5c62 2018-10-18 stsp .Pp
346 c0cc5c62 2018-10-18 stsp The options for
347 c0cc5c62 2018-10-18 stsp .Cm got diff
348 c0cc5c62 2018-10-18 stsp are as follows:
349 c0cc5c62 2018-10-18 stsp .Bl -tag -width Ds
350 c0cc5c62 2018-10-18 stsp .It Fl C Ar number
351 c0cc5c62 2018-10-18 stsp Set the number of context lines shown in the diff.
352 c0cc5c62 2018-10-18 stsp By default, 3 lines of context are shown.
353 b72f483a 2019-02-05 stsp .It Fl r Ar repository-path
354 b72f483a 2019-02-05 stsp Use the repository at the specified path.
355 b72f483a 2019-02-05 stsp If not specified, assume the repository is located at or above the current
356 b72f483a 2019-02-05 stsp working directory.
357 b72f483a 2019-02-05 stsp If this directory is a
358 b72f483a 2019-02-05 stsp .Nm
359 b72f483a 2019-02-05 stsp work tree, use the repository path associated with this work tree.
360 4ed9f614 2019-08-04 stsp .It Fl s
361 4ed9f614 2019-08-04 stsp Show changes staged with
362 4ed9f614 2019-08-04 stsp .Cm got stage
363 4ed9f614 2019-08-04 stsp instead of showing local changes.
364 4ed9f614 2019-08-04 stsp This option is only valid when
365 4ed9f614 2019-08-04 stsp .Cm got diff
366 4ed9f614 2019-08-04 stsp is invoked in a work tree.
367 c0cc5c62 2018-10-18 stsp .El
368 bc26cce8 2019-08-04 stsp .It Cm di
369 bc26cce8 2019-08-04 stsp Short alias for
370 bc26cce8 2019-08-04 stsp .Cm diff .
371 dfc23429 2019-08-11 stsp .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
372 1ff8e573 2018-08-02 stsp Display line-by-line history of a file at the specified path.
373 1ff8e573 2018-08-02 stsp .Pp
374 1ff8e573 2018-08-02 stsp The options for
375 1ff8e573 2018-08-02 stsp .Cm got blame
376 1ff8e573 2018-08-02 stsp are as follows:
377 1ff8e573 2018-08-02 stsp .Bl -tag -width Ds
378 1ff8e573 2018-08-02 stsp .It Fl c Ar commit
379 1ff8e573 2018-08-02 stsp Start traversing history at the specified
380 1ff8e573 2018-08-02 stsp .Ar commit .
381 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
382 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
383 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
384 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
385 1ff8e573 2018-08-02 stsp .It Fl r Ar repository-path
386 1ff8e573 2018-08-02 stsp Use the repository at the specified path.
387 1ff8e573 2018-08-02 stsp If not specified, assume the repository is located at or above the current
388 1ff8e573 2018-08-02 stsp working directory.
389 0c06baac 2019-02-05 stsp If this directory is a
390 0c06baac 2019-02-05 stsp .Nm
391 0c06baac 2019-02-05 stsp work tree, use the repository path associated with this work tree.
392 5c860e29 2018-03-12 stsp .El
393 bc26cce8 2019-08-04 stsp .It Cm bl
394 bc26cce8 2019-08-04 stsp Short alias for
395 bc26cce8 2019-08-04 stsp .Cm blame .
396 dfc23429 2019-08-11 stsp .It Cm tree Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl i Oc Oo Fl R Oc Op Ar path
397 5de5890b 2018-10-18 stsp Display a listing of files and directories at the specified
398 5de5890b 2018-10-18 stsp directory path in the repository.
399 db0c2996 2019-02-10 stsp Entries shown in this listing may carry one of the following trailing
400 db0c2996 2019-02-10 stsp annotations:
401 db0c2996 2019-02-10 stsp .Bl -column YXZ description
402 848d6979 2019-08-12 stsp .It @ Ta entry is a symbolic link
403 db0c2996 2019-02-10 stsp .It / Ta entry is a directory
404 db0c2996 2019-02-10 stsp .It * Ta entry is an executable file
405 db0c2996 2019-02-10 stsp .El
406 db0c2996 2019-02-10 stsp .Pp
407 0c849583 2019-02-05 stsp If no
408 0c849583 2019-02-05 stsp .Ar path
409 0c849583 2019-02-05 stsp is specified, list the repository path corresponding to the current
410 0c849583 2019-02-05 stsp directory of the work tree, or the root directory of the repository
411 0c849583 2019-02-05 stsp if there is no work tree.
412 5de5890b 2018-10-18 stsp .Pp
413 5de5890b 2018-10-18 stsp The options for
414 5de5890b 2018-10-18 stsp .Cm got tree
415 5de5890b 2018-10-18 stsp are as follows:
416 5de5890b 2018-10-18 stsp .Bl -tag -width Ds
417 5de5890b 2018-10-18 stsp .It Fl c Ar commit
418 5de5890b 2018-10-18 stsp List files and directories as they appear in the specified
419 5de5890b 2018-10-18 stsp .Ar commit .
420 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
421 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
422 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
423 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
424 5de5890b 2018-10-18 stsp .It Fl r Ar repository-path
425 5de5890b 2018-10-18 stsp Use the repository at the specified path.
426 5de5890b 2018-10-18 stsp If not specified, assume the repository is located at or above the current
427 5de5890b 2018-10-18 stsp working directory.
428 0c849583 2019-02-05 stsp If this directory is a
429 0c849583 2019-02-05 stsp .Nm
430 0c849583 2019-02-05 stsp work tree, use the repository path associated with this work tree.
431 5de5890b 2018-10-18 stsp .It Fl i
432 5de5890b 2018-10-18 stsp Show object IDs of files (blob objects) and directories (tree objects).
433 c1669e2e 2019-01-09 stsp .It Fl R
434 0c849583 2019-02-05 stsp Recurse into sub-directories in the repository.
435 d0eebce4 2019-03-11 stsp .El
436 bc26cce8 2019-08-04 stsp .It Cm tr
437 bc26cce8 2019-08-04 stsp Short alias for
438 bc26cce8 2019-08-04 stsp .Cm tree .
439 c55aa27e 2019-08-12 stsp .It Cm ref Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl s Oc Op Ar name Ar target
440 d0eebce4 2019-03-11 stsp Manage references in a repository.
441 d0eebce4 2019-03-11 stsp .Pp
442 d0eebce4 2019-03-11 stsp If no options are passed, expect two arguments and attempt to create,
443 d0eebce4 2019-03-11 stsp or update, the reference with the given
444 d0eebce4 2019-03-11 stsp .Ar name ,
445 d0eebce4 2019-03-11 stsp and make it point at the given
446 d83d9d5c 2019-05-13 stsp .Ar target .
447 a54b6686 2019-06-28 stsp The target may be an object ID SHA1 hash or an existing reference which
448 a54b6686 2019-06-28 stsp will be resolved to an object ID.
449 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
450 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
451 d0eebce4 2019-03-11 stsp .Pp
452 d0eebce4 2019-03-11 stsp The options for
453 d0eebce4 2019-03-11 stsp .Cm got ref
454 d0eebce4 2019-03-11 stsp are as follows:
455 d0eebce4 2019-03-11 stsp .Bl -tag -width Ds
456 d0eebce4 2019-03-11 stsp .It Fl r Ar repository-path
457 d0eebce4 2019-03-11 stsp Use the repository at the specified path.
458 d0eebce4 2019-03-11 stsp If not specified, assume the repository is located at or above the current
459 d0eebce4 2019-03-11 stsp working directory.
460 d0eebce4 2019-03-11 stsp If this directory is a
461 d0eebce4 2019-03-11 stsp .Nm
462 d0eebce4 2019-03-11 stsp work tree, use the repository path associated with this work tree.
463 d0eebce4 2019-03-11 stsp .It Fl l
464 d0eebce4 2019-03-11 stsp List all existing references in the repository.
465 d0eebce4 2019-03-11 stsp .It Fl d Ar name
466 d0eebce4 2019-03-11 stsp Delete the reference with the specified name from the repository.
467 d1c1ae5f 2019-08-12 stsp .It Fl s
468 d1c1ae5f 2019-08-12 stsp Create a symbolic reference pointing at the specified
469 d1c1ae5f 2019-08-12 stsp .Ar target ,
470 d1c1ae5f 2019-08-12 stsp which must be an existing reference.
471 d1c1ae5f 2019-08-12 stsp Care should be taken not to create loops between references when
472 d1c1ae5f 2019-08-12 stsp this option is used.
473 4e759de4 2019-06-26 stsp .El
474 dfc23429 2019-08-11 stsp .It Cm branch Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Op Ar name Op Ar base-branch
475 4e759de4 2019-06-26 stsp Manage branches in a repository.
476 4e759de4 2019-06-26 stsp .Pp
477 4e759de4 2019-06-26 stsp Branches are managed via references which live in the
478 4e759de4 2019-06-26 stsp .Dq refs/heads/
479 4e759de4 2019-06-26 stsp reference namespace.
480 4e759de4 2019-06-26 stsp The
481 4e759de4 2019-06-26 stsp .Cm got branch
482 4e759de4 2019-06-26 stsp command operates on references in this namespace only.
483 4e759de4 2019-06-26 stsp .Pp
484 4e759de4 2019-06-26 stsp If no options are passed, expect one or two arguments and attempt to create
485 4e759de4 2019-06-26 stsp a branch with the given
486 4e759de4 2019-06-26 stsp .Ar name ,
487 4e759de4 2019-06-26 stsp and make it point at the given
488 4e759de4 2019-06-26 stsp .Ar base-branch .
489 4e759de4 2019-06-26 stsp If no
490 4e759de4 2019-06-26 stsp .Ar base-branch
491 4e759de4 2019-06-26 stsp is specified, default to the work tree's current branch if invoked in a
492 4e759de4 2019-06-26 stsp work tree, or to the repository's HEAD reference.
493 4e759de4 2019-06-26 stsp .Pp
494 4e759de4 2019-06-26 stsp The options for
495 4e759de4 2019-06-26 stsp .Cm got branch
496 4e759de4 2019-06-26 stsp are as follows:
497 4e759de4 2019-06-26 stsp .Bl -tag -width Ds
498 4e759de4 2019-06-26 stsp .It Fl r Ar repository-path
499 4e759de4 2019-06-26 stsp Use the repository at the specified path.
500 4e759de4 2019-06-26 stsp If not specified, assume the repository is located at or above the current
501 4e759de4 2019-06-26 stsp working directory.
502 4e759de4 2019-06-26 stsp If this directory is a
503 4e759de4 2019-06-26 stsp .Nm
504 4e759de4 2019-06-26 stsp work tree, use the repository path associated with this work tree.
505 4e759de4 2019-06-26 stsp .It Fl l
506 4e759de4 2019-06-26 stsp List all existing branches in the repository.
507 ba882ee3 2019-07-11 stsp If invoked in a work tree, the work tree's current branch is shown
508 ba882ee3 2019-07-11 stsp with one the following annotations:
509 ba882ee3 2019-07-11 stsp .Bl -column YXZ description
510 ba882ee3 2019-07-11 stsp .It * Ta work tree's base commit matches the branch tip
511 1dd86744 2019-08-12 anthony .It \(a~ Ta work tree's base commit is out-of-date
512 ba882ee3 2019-07-11 stsp .El
513 4e759de4 2019-06-26 stsp .It Fl d Ar name
514 4e759de4 2019-06-26 stsp Delete the branch with the specified name from the repository.
515 7acfb25b 2019-07-11 stsp Only the branch reference is deleted.
516 7acfb25b 2019-07-11 stsp Any commit, tree, and blob objects belonging to the branch
517 74d012d1 2019-07-11 stsp remain in the repository and may be removed separately with
518 ce33d90e 2019-07-14 stsp Git's garbage collector.
519 5de5890b 2018-10-18 stsp .El
520 97b3a7be 2019-07-09 stsp .It Cm br
521 97b3a7be 2019-07-09 stsp Short alias for
522 97b3a7be 2019-07-09 stsp .Cm branch .
523 fbb7e5c7 2019-05-11 stsp .It Cm add Ar file-path ...
524 8125ddca 2019-05-11 stsp Schedule unversioned files in a work tree for addition to the
525 d00136be 2019-03-26 stsp repository in the next commit.
526 648e4ef7 2019-07-09 stsp .It Cm remove Ar file-path ...
527 17ed4618 2019-06-02 stsp Remove versioned files from a work tree and schedule them for deletion
528 2ec1f75b 2019-03-26 stsp from the repository in the next commit.
529 2ec1f75b 2019-03-26 stsp .Pp
530 2ec1f75b 2019-03-26 stsp The options for
531 86d25a1b 2019-07-11 stsp .Cm got remove
532 2ec1f75b 2019-03-26 stsp are as follows:
533 2ec1f75b 2019-03-26 stsp .Bl -tag -width Ds
534 2ec1f75b 2019-03-26 stsp .It Fl f
535 17ed4618 2019-06-02 stsp Perform the operation even if a file contains uncommitted modifications.
536 d0eebce4 2019-03-11 stsp .El
537 648e4ef7 2019-07-09 stsp .It Cm rm
538 648e4ef7 2019-07-09 stsp Short alias for
539 648e4ef7 2019-07-09 stsp .Cm remove .
540 dfc23429 2019-08-11 stsp .It Cm revert Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl R Oc Ar path ...
541 bc3056e3 2019-08-18 stsp Revert any uncommitted changes in files at the specified paths.
542 a129376b 2019-03-28 stsp File contents will be overwritten with those contained in the
543 1dd86744 2019-08-12 anthony work tree's base commit.
544 1dd86744 2019-08-12 anthony There is no way to bring discarded changes back after
545 a129376b 2019-03-28 stsp .Cm got revert !
546 a129376b 2019-03-28 stsp .Pp
547 e20a8b6f 2019-06-04 stsp If a file was added with
548 a129376b 2019-03-28 stsp .Cm got add
549 a129376b 2019-03-28 stsp it will become an unversioned file again.
550 e20a8b6f 2019-06-04 stsp If a file was deleted with
551 86d25a1b 2019-07-11 stsp .Cm got remove
552 a129376b 2019-03-28 stsp it will be restored.
553 0f6d7415 2019-08-08 stsp .Pp
554 0f6d7415 2019-08-08 stsp The options for
555 0f6d7415 2019-08-08 stsp .Cm got revert
556 0f6d7415 2019-08-08 stsp are as follows:
557 0f6d7415 2019-08-08 stsp .Bl -tag -width Ds
558 33aa809d 2019-08-08 stsp .It Fl p
559 33aa809d 2019-08-08 stsp Instead of reverting all changes in files, interactively select or reject
560 33aa809d 2019-08-08 stsp changes to revert based on
561 33aa809d 2019-08-08 stsp .Dq y
562 33aa809d 2019-08-08 stsp (revert change),
563 33aa809d 2019-08-08 stsp .Dq n
564 33aa809d 2019-08-08 stsp (keep change), and
565 33aa809d 2019-08-08 stsp .Dq q
566 33aa809d 2019-08-08 stsp (quit reverting this file) responses.
567 33aa809d 2019-08-08 stsp If a file is in modified status, individual patches derived from the
568 33aa809d 2019-08-08 stsp modified file content can be reverted.
569 33aa809d 2019-08-08 stsp Files in added or deleted status may only be reverted in their entirety.
570 33aa809d 2019-08-08 stsp .It Fl F Ar response-script
571 33aa809d 2019-08-08 stsp With the
572 33aa809d 2019-08-08 stsp .Fl p
573 33aa809d 2019-08-08 stsp option, read
574 33aa809d 2019-08-08 stsp .Dq y ,
575 33aa809d 2019-08-08 stsp .Dq n ,
576 33aa809d 2019-08-08 stsp and
577 33aa809d 2019-08-08 stsp .Dq q
578 33aa809d 2019-08-08 stsp responses line-by-line from the specified
579 33aa809d 2019-08-08 stsp .Ar response-script
580 33aa809d 2019-08-08 stsp file instead of prompting interactively.
581 0f6d7415 2019-08-08 stsp .It Fl R
582 0f6d7415 2019-08-08 stsp Permit recursion into directories.
583 0f6d7415 2019-08-08 stsp If this option is not specified,
584 0f6d7415 2019-08-08 stsp .Cm got revert
585 0f6d7415 2019-08-08 stsp will refuse to run if a specified
586 0f6d7415 2019-08-08 stsp .Ar path
587 0f6d7415 2019-08-08 stsp is a directory.
588 0f6d7415 2019-08-08 stsp .El
589 97b3a7be 2019-07-09 stsp .It Cm rv
590 97b3a7be 2019-07-09 stsp Short alias for
591 97b3a7be 2019-07-09 stsp .Cm revert .
592 dfc23429 2019-08-11 stsp .It Cm commit Oo Fl m Ar message Oc Op Ar path ...
593 4ed9f614 2019-08-04 stsp Create a new commit in the repository from changes in a work tree
594 15cd91f7 2019-05-12 stsp and use this commit as the new base commit for the work tree.
595 5c1e53bc 2019-07-28 stsp If no
596 90e8619e 2019-07-25 stsp .Ar path
597 4ed9f614 2019-08-04 stsp is specified, commit all changes in the work tree.
598 4ed9f614 2019-08-04 stsp Otherwise, commit changes at or within the specified paths.
599 15cd91f7 2019-05-12 stsp .Pp
600 4ed9f614 2019-08-04 stsp If changes have been explicitly staged for commit with
601 1dd86744 2019-08-12 anthony .Cm got stage ,
602 4ed9f614 2019-08-04 stsp only commit staged changes and reject any specified paths which
603 4ed9f614 2019-08-04 stsp have not been staged.
604 4ed9f614 2019-08-04 stsp .Pp
605 15cd91f7 2019-05-12 stsp Show the status of each affected file, using the following status codes:
606 15cd91f7 2019-05-12 stsp .Bl -column YXZ description
607 15cd91f7 2019-05-12 stsp .It M Ta modified file
608 15cd91f7 2019-05-12 stsp .It D Ta file was deleted
609 15cd91f7 2019-05-12 stsp .It A Ta new file was added
610 15cd91f7 2019-05-12 stsp .El
611 15cd91f7 2019-05-12 stsp .Pp
612 996d5ccd 2019-08-05 stsp Files which are not part of the new commit will retain their previously
613 996d5ccd 2019-08-05 stsp recorded base commit.
614 15cd91f7 2019-05-12 stsp Some
615 15cd91f7 2019-05-12 stsp .Nm
616 15cd91f7 2019-05-12 stsp commands may refuse to run while the work tree contains files from
617 15cd91f7 2019-05-12 stsp multiple base commits.
618 15cd91f7 2019-05-12 stsp The base commit of such a work tree can be made consistent by running
619 47ec7be7 2019-05-12 stsp .Cm got update
620 47ec7be7 2019-05-12 stsp across the entire work tree.
621 15cd91f7 2019-05-12 stsp .Pp
622 15cd91f7 2019-05-12 stsp The
623 15cd91f7 2019-05-12 stsp .Cm got commit
624 15cd91f7 2019-05-12 stsp command requires the
625 74416c47 2019-05-09 stsp .Ev GOT_AUTHOR
626 74416c47 2019-05-09 stsp environment variable to be set.
627 74416c47 2019-05-09 stsp .Pp
628 74416c47 2019-05-09 stsp The options for
629 74416c47 2019-05-09 stsp .Cm got commit
630 74416c47 2019-05-09 stsp are as follows:
631 74416c47 2019-05-09 stsp .Bl -tag -width Ds
632 74ff3f23 2019-07-07 stsp .It Fl m Ar message
633 74416c47 2019-05-09 stsp Use the specified log message when creating the new commit.
634 23594da9 2019-05-13 stsp Without the
635 23594da9 2019-05-13 stsp .Fl m
636 23594da9 2019-05-13 stsp option,
637 23594da9 2019-05-13 stsp .Cm got commit
638 23594da9 2019-05-13 stsp opens a temporary file in an editor where a log message can be written.
639 2ec1f75b 2019-03-26 stsp .El
640 cfce0458 2019-07-28 stsp .Pp
641 cfce0458 2019-07-28 stsp .Cm got commit
642 cfce0458 2019-07-28 stsp will refuse to run if certain preconditions are not met.
643 916f288c 2019-07-30 stsp If the work tree's current branch is not in the
644 916f288c 2019-07-30 stsp .Dq refs/heads/
645 916f288c 2019-07-30 stsp reference namespace, new commits may not be created on this branch.
646 cfce0458 2019-07-28 stsp Local changes may only be committed if they are based on file content
647 cfce0458 2019-07-28 stsp found in the most recent commit on the work tree's branch.
648 cfce0458 2019-07-28 stsp If a path is found to be out of date,
649 cfce0458 2019-07-28 stsp .Cm got update
650 cfce0458 2019-07-28 stsp must be used first in order to merge local changes with changes made
651 cfce0458 2019-07-28 stsp in the repository.
652 97b3a7be 2019-07-09 stsp .It Cm ci
653 97b3a7be 2019-07-09 stsp Short alias for
654 97b3a7be 2019-07-09 stsp .Cm commit .
655 234035bc 2019-06-01 stsp .It Cm cherrypick Ar commit
656 234035bc 2019-06-01 stsp Merge changes from a single
657 234035bc 2019-06-01 stsp .Ar commit
658 234035bc 2019-06-01 stsp into the work tree.
659 234035bc 2019-06-01 stsp The specified
660 234035bc 2019-06-01 stsp .Ar commit
661 234035bc 2019-06-01 stsp must be on a different branch than the work tree's base commit.
662 a54b6686 2019-06-28 stsp The expected argument is a reference or a commit ID SHA1 hash.
663 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
664 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
665 234035bc 2019-06-01 stsp .Pp
666 234035bc 2019-06-01 stsp Show the status of each affected file, using the following status codes:
667 234035bc 2019-06-01 stsp .Bl -column YXZ description
668 234035bc 2019-06-01 stsp .It G Ta file was merged
669 234035bc 2019-06-01 stsp .It C Ta file was merged and conflicts occurred during merge
670 234035bc 2019-06-01 stsp .It ! Ta changes destined for a missing file were not merged
671 234035bc 2019-06-01 stsp .It D Ta file was deleted
672 2b92fad7 2019-06-02 stsp .It d Ta file's deletion was obstructed by local modifications
673 234035bc 2019-06-01 stsp .It A Ta new file was added
674 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
675 74416c47 2019-05-09 stsp .El
676 234035bc 2019-06-01 stsp .Pp
677 234035bc 2019-06-01 stsp The merged changes will appear as local changes in the work tree, which
678 234035bc 2019-06-01 stsp may be viewed with
679 234035bc 2019-06-01 stsp .Cm got diff ,
680 234035bc 2019-06-01 stsp amended manually or with further
681 234035bc 2019-06-01 stsp .Cm got cherrypick
682 bc3056e3 2019-08-18 stsp commands,
683 234035bc 2019-06-01 stsp committed with
684 234035bc 2019-06-01 stsp .Cm got commit ,
685 234035bc 2019-06-01 stsp or discarded again with
686 234035bc 2019-06-01 stsp .Cm got revert .
687 234035bc 2019-06-01 stsp .Pp
688 234035bc 2019-06-01 stsp .Cm got cherrypick
689 234035bc 2019-06-01 stsp will refuse to run if certain preconditions are not met.
690 234035bc 2019-06-01 stsp If the work tree contains multiple base commits it must first be updated
691 234035bc 2019-06-01 stsp to a single base commit with
692 234035bc 2019-06-01 stsp .Cm got update .
693 234035bc 2019-06-01 stsp If the work tree already contains files with merge conflicts, these
694 234035bc 2019-06-01 stsp conflicts must be resolved first.
695 016477fd 2019-07-09 stsp .It Cm cy
696 97b3a7be 2019-07-09 stsp Short alias for
697 97b3a7be 2019-07-09 stsp .Cm cherrypick .
698 5ef14e63 2019-06-02 stsp .It Cm backout Ar commit
699 5ef14e63 2019-06-02 stsp Reverse-merge changes from a single
700 5ef14e63 2019-06-02 stsp .Ar commit
701 5ef14e63 2019-06-02 stsp into the work tree.
702 5ef14e63 2019-06-02 stsp The specified
703 5ef14e63 2019-06-02 stsp .Ar commit
704 5ef14e63 2019-06-02 stsp must be on the same branch as the work tree's base commit.
705 a54b6686 2019-06-28 stsp The expected argument is a reference or a commit ID SHA1 hash.
706 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
707 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
708 5ef14e63 2019-06-02 stsp .Pp
709 5ef14e63 2019-06-02 stsp Show the status of each affected file, using the following status codes:
710 5ef14e63 2019-06-02 stsp .Bl -column YXZ description
711 5ef14e63 2019-06-02 stsp .It G Ta file was merged
712 5ef14e63 2019-06-02 stsp .It C Ta file was merged and conflicts occurred during merge
713 5ef14e63 2019-06-02 stsp .It ! Ta changes destined for a missing file were not merged
714 5ef14e63 2019-06-02 stsp .It D Ta file was deleted
715 5ef14e63 2019-06-02 stsp .It d Ta file's deletion was obstructed by local modifications
716 5ef14e63 2019-06-02 stsp .It A Ta new file was added
717 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
718 234035bc 2019-06-01 stsp .El
719 5ef14e63 2019-06-02 stsp .Pp
720 5ef14e63 2019-06-02 stsp The reverse-merged changes will appear as local changes in the work tree,
721 5ef14e63 2019-06-02 stsp which may be viewed with
722 5ef14e63 2019-06-02 stsp .Cm got diff ,
723 5ef14e63 2019-06-02 stsp amended manually or with further
724 778a73c2 2019-07-12 stsp .Cm got backout
725 bc3056e3 2019-08-18 stsp commands,
726 5ef14e63 2019-06-02 stsp committed with
727 5ef14e63 2019-06-02 stsp .Cm got commit ,
728 5ef14e63 2019-06-02 stsp or discarded again with
729 5ef14e63 2019-06-02 stsp .Cm got revert .
730 5ef14e63 2019-06-02 stsp .Pp
731 92228c38 2019-06-02 stsp .Cm got backout
732 92228c38 2019-06-02 stsp will refuse to run if certain preconditions are not met.
733 92228c38 2019-06-02 stsp If the work tree contains multiple base commits it must first be updated
734 92228c38 2019-06-02 stsp to a single base commit with
735 92228c38 2019-06-02 stsp .Cm got update .
736 92228c38 2019-06-02 stsp If the work tree already contains files with merge conflicts, these
737 92228c38 2019-06-02 stsp conflicts must be resolved first.
738 97b3a7be 2019-07-09 stsp .It Cm bo
739 97b3a7be 2019-07-09 stsp Short alias for
740 97b3a7be 2019-07-09 stsp .Cm backout .
741 dfc23429 2019-08-11 stsp .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
742 818c7501 2019-07-11 stsp Rebase commits on the specified
743 818c7501 2019-07-11 stsp .Ar branch
744 818c7501 2019-07-11 stsp onto the tip of the current branch of the work tree.
745 818c7501 2019-07-11 stsp The
746 818c7501 2019-07-11 stsp .Ar branch
747 818c7501 2019-07-11 stsp must share common ancestry with the work tree's current branch.
748 bc3056e3 2019-08-18 stsp Rebasing begins with the first descendant commit of the youngest
749 f09e2405 2019-07-11 stsp common ancestor commit shared by the specified
750 818c7501 2019-07-11 stsp .Ar branch
751 818c7501 2019-07-11 stsp and the work tree's current branch, and stops once the tip commit
752 f09e2405 2019-07-11 stsp of the specified
753 818c7501 2019-07-11 stsp .Ar branch
754 f09e2405 2019-07-11 stsp has been rebased.
755 818c7501 2019-07-11 stsp .Pp
756 c6b4581b 2019-07-28 stsp Rebased commits are accumulated on a temporary branch which the work tree
757 c6b4581b 2019-07-28 stsp will remain switched to throughout the entire rebase operation.
758 c6b4581b 2019-07-28 stsp Commits on this branch represent the same changes with the same log
759 c6b4581b 2019-07-28 stsp messages as their counterparts on the original
760 818c7501 2019-07-11 stsp .Ar branch ,
761 818c7501 2019-07-11 stsp but with different commit IDs.
762 818c7501 2019-07-11 stsp Once rebasing has completed successfully, the temporary branch becomes
763 f09e2405 2019-07-11 stsp the new version of the specified
764 818c7501 2019-07-11 stsp .Ar branch
765 818c7501 2019-07-11 stsp and the work tree is automatically switched to it.
766 818c7501 2019-07-11 stsp .Pp
767 818c7501 2019-07-11 stsp While rebasing commits, show the status of each affected file,
768 818c7501 2019-07-11 stsp using the following status codes:
769 818c7501 2019-07-11 stsp .Bl -column YXZ description
770 818c7501 2019-07-11 stsp .It G Ta file was merged
771 818c7501 2019-07-11 stsp .It C Ta file was merged and conflicts occurred during merge
772 818c7501 2019-07-11 stsp .It ! Ta changes destined for a missing file were not merged
773 818c7501 2019-07-11 stsp .It D Ta file was deleted
774 818c7501 2019-07-11 stsp .It d Ta file's deletion was obstructed by local modifications
775 818c7501 2019-07-11 stsp .It A Ta new file was added
776 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
777 5ef14e63 2019-06-02 stsp .El
778 818c7501 2019-07-11 stsp .Pp
779 f09e2405 2019-07-11 stsp If merge conflicts occur the rebase operation is interrupted and may
780 f09e2405 2019-07-11 stsp be continued once conflicts have been resolved.
781 818c7501 2019-07-11 stsp Alternatively, the rebase operation may be aborted which will leave
782 818c7501 2019-07-11 stsp .Ar branch
783 818c7501 2019-07-11 stsp unmodified and the work tree switched back to its original branch.
784 818c7501 2019-07-11 stsp .Pp
785 ff0d2220 2019-07-11 stsp If a merge conflict is resolved in a way which renders the merged
786 f09e2405 2019-07-11 stsp change into a no-op change, the corresponding commit will be elided
787 f09e2405 2019-07-11 stsp when the rebase operation continues.
788 ff0d2220 2019-07-11 stsp .Pp
789 818c7501 2019-07-11 stsp .Cm got rebase
790 818c7501 2019-07-11 stsp will refuse to run if certain preconditions are not met.
791 818c7501 2019-07-11 stsp If the work tree contains multiple base commits it must first be updated
792 818c7501 2019-07-11 stsp to a single base commit with
793 818c7501 2019-07-11 stsp .Cm got update .
794 4ed9f614 2019-08-04 stsp If changes have been staged with
795 4ed9f614 2019-08-04 stsp .Cm got stage ,
796 bc3056e3 2019-08-18 stsp these changes must first be committed with
797 4ed9f614 2019-08-04 stsp .Cm got commit
798 4ed9f614 2019-08-04 stsp or unstaged with
799 4ed9f614 2019-08-04 stsp .Cm got unstage .
800 f09e2405 2019-07-11 stsp If the work tree contains local changes, these changes must first be
801 f09e2405 2019-07-11 stsp committed with
802 f09e2405 2019-07-11 stsp .Cm got commit
803 f09e2405 2019-07-11 stsp or reverted with
804 f09e2405 2019-07-11 stsp .Cm got revert .
805 64c6d990 2019-07-11 stsp If the
806 64c6d990 2019-07-11 stsp .Ar branch
807 64c6d990 2019-07-11 stsp contains changes to files outside of the work tree's path prefix,
808 64c6d990 2019-07-11 stsp the work tree cannot be used to rebase this branch.
809 818c7501 2019-07-11 stsp .Pp
810 7d5807f4 2019-07-11 stsp The
811 7d5807f4 2019-07-11 stsp .Cm got update
812 7d5807f4 2019-07-11 stsp and
813 7d5807f4 2019-07-11 stsp .Cm got commit
814 7d5807f4 2019-07-11 stsp commands will refuse to run while a rebase operation is in progress.
815 7d5807f4 2019-07-11 stsp Other commands which manipulate the work tree may be used for
816 7d5807f4 2019-07-11 stsp conflict resolution purposes.
817 818c7501 2019-07-11 stsp .Pp
818 818c7501 2019-07-11 stsp The options for
819 818c7501 2019-07-11 stsp .Cm got rebase
820 818c7501 2019-07-11 stsp are as follows:
821 818c7501 2019-07-11 stsp .Bl -tag -width Ds
822 818c7501 2019-07-11 stsp .It Fl a
823 818c7501 2019-07-11 stsp Abort an interrupted rebase operation.
824 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
825 818c7501 2019-07-11 stsp .It Fl c
826 06067b48 2019-07-11 stsp Continue an interrupted rebase operation.
827 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
828 818c7501 2019-07-11 stsp .El
829 818c7501 2019-07-11 stsp .It Cm rb
830 818c7501 2019-07-11 stsp Short alias for
831 818c7501 2019-07-11 stsp .Cm rebase .
832 dfc23429 2019-08-11 stsp .It Cm histedit Oo Fl a Oc Oo Fl c Oc Op Fl F Ar histedit-script
833 0ebf8283 2019-07-24 stsp Edit commit history between the work tree's current base commit and
834 0ebf8283 2019-07-24 stsp the tip commit of the work tree's current branch.
835 0ebf8283 2019-07-24 stsp .Pp
836 0ebf8283 2019-07-24 stsp Editing of commit history is controlled via a
837 0ebf8283 2019-07-24 stsp .Ar histedit script
838 0ebf8283 2019-07-24 stsp which can be edited interactively or passed on the command line.
839 0ebf8283 2019-07-24 stsp The format of the histedit script is line-based.
840 0ebf8283 2019-07-24 stsp Each line in the script begins with a command name, followed by
841 0ebf8283 2019-07-24 stsp whitespace and an argument.
842 0ebf8283 2019-07-24 stsp For most commands, the expected argument is a commit ID SHA1 hash.
843 0ebf8283 2019-07-24 stsp Any remaining text on the line is ignored.
844 0ebf8283 2019-07-24 stsp Lines which begin with the
845 0ebf8283 2019-07-24 stsp .Sq #
846 0ebf8283 2019-07-24 stsp character are ignored entirely.
847 0ebf8283 2019-07-24 stsp .Pp
848 0ebf8283 2019-07-24 stsp The available commands are as follows:
849 0ebf8283 2019-07-24 stsp .Bl -column YXZ pick-commit
850 0ebf8283 2019-07-24 stsp .It pick Ar commit Ta Use the specified commit as it is.
851 a698f62e 2019-07-25 stsp .It edit Ar commit Ta Use the specified commit but once changes have been
852 0ebf8283 2019-07-24 stsp merged into the work tree interrupt the histedit operation for amending.
853 0ebf8283 2019-07-24 stsp .It fold Ar commit Ta Combine the specified commit with the next commit
854 0ebf8283 2019-07-24 stsp listed further below that will be used.
855 0ebf8283 2019-07-24 stsp .It drop Ar commit Ta Remove this commit from the edited history.
856 0ebf8283 2019-07-24 stsp .It mesg Ar log-message Ta Use the specified single-line log message for
857 0ebf8283 2019-07-24 stsp the commit on the previous line.
858 0ebf8283 2019-07-24 stsp If the log message argument is left empty, open an editor where a new
859 0ebf8283 2019-07-24 stsp log message can be written.
860 0ebf8283 2019-07-24 stsp .El
861 0ebf8283 2019-07-24 stsp .Pp
862 ba67992e 2019-07-25 stsp Every commit in the history being edited must be mentioned in the script.
863 0ebf8283 2019-07-24 stsp Lines may be re-ordered to change the order of commits in the edited history.
864 0ebf8283 2019-07-24 stsp .Pp
865 c6b4581b 2019-07-28 stsp Edited commits are accumulated on a temporary branch which the work tree
866 c6b4581b 2019-07-28 stsp will remain switched to throughout the entire histedit operation.
867 0ebf8283 2019-07-24 stsp Once history editing has completed successfully, the temporary branch becomes
868 498a90b7 2019-07-25 stsp the new version of the work tree's branch and the work tree is automatically
869 498a90b7 2019-07-25 stsp switched to it.
870 0ebf8283 2019-07-24 stsp .Pp
871 0ebf8283 2019-07-24 stsp While merging commits, show the status of each affected file,
872 0ebf8283 2019-07-24 stsp using the following status codes:
873 0ebf8283 2019-07-24 stsp .Bl -column YXZ description
874 0ebf8283 2019-07-24 stsp .It G Ta file was merged
875 0ebf8283 2019-07-24 stsp .It C Ta file was merged and conflicts occurred during merge
876 0ebf8283 2019-07-24 stsp .It ! Ta changes destined for a missing file were not merged
877 0ebf8283 2019-07-24 stsp .It D Ta file was deleted
878 0ebf8283 2019-07-24 stsp .It d Ta file's deletion was obstructed by local modifications
879 0ebf8283 2019-07-24 stsp .It A Ta new file was added
880 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
881 0ebf8283 2019-07-24 stsp .El
882 0ebf8283 2019-07-24 stsp .Pp
883 0ebf8283 2019-07-24 stsp If merge conflicts occur the histedit operation is interrupted and may
884 0ebf8283 2019-07-24 stsp be continued once conflicts have been resolved.
885 0ebf8283 2019-07-24 stsp Alternatively, the histedit operation may be aborted which will leave
886 0ebf8283 2019-07-24 stsp the work tree switched back to its original branch.
887 0ebf8283 2019-07-24 stsp .Pp
888 0ebf8283 2019-07-24 stsp If a merge conflict is resolved in a way which renders the merged
889 0ebf8283 2019-07-24 stsp change into a no-op change, the corresponding commit will be elided
890 0ebf8283 2019-07-24 stsp when the histedit operation continues.
891 0ebf8283 2019-07-24 stsp .Pp
892 0ebf8283 2019-07-24 stsp .Cm got histedit
893 0ebf8283 2019-07-24 stsp will refuse to run if certain preconditions are not met.
894 c7d20a3f 2019-07-30 stsp If the work tree's current branch is not in the
895 c7d20a3f 2019-07-30 stsp .Dq refs/heads/
896 c7d20a3f 2019-07-30 stsp reference namespace, the history of the branch may not be edited.
897 0ebf8283 2019-07-24 stsp If the work tree contains multiple base commits it must first be updated
898 0ebf8283 2019-07-24 stsp to a single base commit with
899 0ebf8283 2019-07-24 stsp .Cm got update .
900 4ed9f614 2019-08-04 stsp If changes have been staged with
901 4ed9f614 2019-08-04 stsp .Cm got stage ,
902 bc3056e3 2019-08-18 stsp these changes must first be committed with
903 4ed9f614 2019-08-04 stsp .Cm got commit
904 4ed9f614 2019-08-04 stsp or unstaged with
905 4ed9f614 2019-08-04 stsp .Cm got unstage .
906 0ebf8283 2019-07-24 stsp If the work tree contains local changes, these changes must first be
907 0ebf8283 2019-07-24 stsp committed with
908 0ebf8283 2019-07-24 stsp .Cm got commit
909 0ebf8283 2019-07-24 stsp or reverted with
910 0ebf8283 2019-07-24 stsp .Cm got revert .
911 0ebf8283 2019-07-24 stsp If the edited history contains changes to files outside of the work tree's
912 0ebf8283 2019-07-24 stsp path prefix, the work tree cannot be used to edit the history of this branch.
913 0ebf8283 2019-07-24 stsp .Pp
914 0ebf8283 2019-07-24 stsp The
915 0ebf8283 2019-07-24 stsp .Cm got update
916 a698f62e 2019-07-25 stsp command will refuse to run while a histedit operation is in progress.
917 a698f62e 2019-07-25 stsp Other commands which manipulate the work tree may be used, and the
918 0ebf8283 2019-07-24 stsp .Cm got commit
919 a698f62e 2019-07-25 stsp command may be used to commit arbitrary changes to the temporary branch
920 a698f62e 2019-07-25 stsp while the histedit operation is interrupted.
921 0ebf8283 2019-07-24 stsp .Pp
922 0ebf8283 2019-07-24 stsp The options for
923 0ebf8283 2019-07-24 stsp .Cm got histedit
924 0ebf8283 2019-07-24 stsp are as follows:
925 0ebf8283 2019-07-24 stsp .Bl -tag -width Ds
926 0ebf8283 2019-07-24 stsp .It Fl a
927 0ebf8283 2019-07-24 stsp Abort an interrupted histedit operation.
928 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
929 0ebf8283 2019-07-24 stsp .It Fl c
930 0ebf8283 2019-07-24 stsp Continue an interrupted histedit operation.
931 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
932 818c7501 2019-07-11 stsp .El
933 0ebf8283 2019-07-24 stsp .It Cm he
934 0ebf8283 2019-07-24 stsp Short alias for
935 0ebf8283 2019-07-24 stsp .Cm histedit .
936 dfc23429 2019-08-11 stsp .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
937 2db2652d 2019-08-07 stsp Stage local changes for inclusion in the next commit.
938 2db2652d 2019-08-07 stsp If no
939 2db2652d 2019-08-07 stsp .Ar path
940 2db2652d 2019-08-07 stsp is specified, stage all changes in the work tree.
941 2db2652d 2019-08-07 stsp Otherwise, stage changes at or within the specified paths.
942 4ed9f614 2019-08-04 stsp Paths may be staged if they are added, modified, or deleted according to
943 4ed9f614 2019-08-04 stsp .Cm got status .
944 4ed9f614 2019-08-04 stsp .Pp
945 9d8b19a4 2019-08-04 stsp Show the status of each affected file, using the following status codes:
946 9d8b19a4 2019-08-04 stsp .Bl -column YXZ description
947 9d8b19a4 2019-08-04 stsp .It A Ta file addition has been staged
948 9d8b19a4 2019-08-04 stsp .It M Ta file modification has been staged
949 9d8b19a4 2019-08-04 stsp .It D Ta file deletion has been staged
950 9d8b19a4 2019-08-04 stsp .El
951 9d8b19a4 2019-08-04 stsp .Pp
952 9d8b19a4 2019-08-04 stsp Staged file contents are saved in newly created blob objects in the repository.
953 52c8d4ac 2019-08-04 stsp These blobs will be referred to by tree objects once staged changes have been
954 9d8b19a4 2019-08-04 stsp committed.
955 9d8b19a4 2019-08-04 stsp .Pp
956 890ea719 2019-08-04 stsp Staged changes affect the behaviour of
957 4ed9f614 2019-08-04 stsp .Cm got commit ,
958 4ed9f614 2019-08-04 stsp .Cm got status ,
959 4ed9f614 2019-08-04 stsp and
960 4ed9f614 2019-08-04 stsp .Cm got diff .
961 4ed9f614 2019-08-04 stsp While paths with staged changes exist, the
962 4ed9f614 2019-08-04 stsp .Cm got commit
963 4ed9f614 2019-08-04 stsp command will refuse to commit any paths which do not have staged changes.
964 4ed9f614 2019-08-04 stsp Local changes created on top of staged changes can only be committed if
965 4ed9f614 2019-08-04 stsp the path is staged again, or if the staged changes are committed first.
966 4ed9f614 2019-08-04 stsp The
967 4ed9f614 2019-08-04 stsp .Cm got status
968 4ed9f614 2019-08-04 stsp command will show both local changes and staged changes.
969 4ed9f614 2019-08-04 stsp The
970 4ed9f614 2019-08-04 stsp .Cm got diff
971 ecf14362 2019-08-04 stsp command is able to display local changes relative to staged changes,
972 ecf14362 2019-08-04 stsp and to display staged changes relative to the repository.
973 4ed9f614 2019-08-04 stsp The
974 4ed9f614 2019-08-04 stsp .Cm got revert
975 4ed9f614 2019-08-04 stsp command cannot revert staged changes but may be used to revert
976 4f2494e6 2019-08-08 stsp local changes created on top of staged changes.
977 4ed9f614 2019-08-04 stsp .Pp
978 4ed9f614 2019-08-04 stsp The options for
979 4ed9f614 2019-08-04 stsp .Cm got stage
980 4ed9f614 2019-08-04 stsp are as follows:
981 4ed9f614 2019-08-04 stsp .Bl -tag -width Ds
982 4ed9f614 2019-08-04 stsp .It Fl l
983 4ed9f614 2019-08-04 stsp Instead of staging new changes, list paths which are already staged,
984 9d8b19a4 2019-08-04 stsp along with the IDs of staged blob objects and stage status codes.
985 9d8b19a4 2019-08-04 stsp If paths were provided in the command line show the staged paths
986 1dd86744 2019-08-12 anthony among the specified paths.
987 1dd86744 2019-08-12 anthony Otherwise, show all staged paths.
988 dc424a06 2019-08-07 stsp .It Fl p
989 dc424a06 2019-08-07 stsp Instead of staging the entire content of a changed file, interactively
990 dc424a06 2019-08-07 stsp select or reject changes for staging based on
991 dc424a06 2019-08-07 stsp .Dq y
992 6d23ec10 2019-08-08 stsp (stage change),
993 dc424a06 2019-08-07 stsp .Dq n
994 6d23ec10 2019-08-08 stsp (reject change), and
995 b353a198 2019-08-07 stsp .Dq q
996 6d23ec10 2019-08-08 stsp (quit staging this file) responses.
997 dc424a06 2019-08-07 stsp If a file is in modified status, individual patches derived from the
998 dc424a06 2019-08-07 stsp modified file content can be staged.
999 6d23ec10 2019-08-08 stsp Files in added or deleted status may only be staged or rejected in
1000 6d23ec10 2019-08-08 stsp their entirety.
1001 3a070a2b 2019-08-07 stsp .It Fl F Ar response-script
1002 dc424a06 2019-08-07 stsp With the
1003 dc424a06 2019-08-07 stsp .Fl p
1004 3a070a2b 2019-08-07 stsp option, read
1005 3a070a2b 2019-08-07 stsp .Dq y ,
1006 3a070a2b 2019-08-07 stsp .Dq n ,
1007 3a070a2b 2019-08-07 stsp and
1008 3a070a2b 2019-08-07 stsp .Dq q
1009 0e2f5884 2019-08-07 stsp responses line-by-line from the specified
1010 0e2f5884 2019-08-07 stsp .Ar response-script
1011 0e2f5884 2019-08-07 stsp file instead of prompting interactively.
1012 4ed9f614 2019-08-04 stsp .El
1013 4ed9f614 2019-08-04 stsp .Pp
1014 4ed9f614 2019-08-04 stsp .Cm got stage
1015 4ed9f614 2019-08-04 stsp will refuse to run if certain preconditions are not met.
1016 4ed9f614 2019-08-04 stsp If a file contains merge conflicts, these conflicts must be resolved first.
1017 4ed9f614 2019-08-04 stsp If a file is found to be out of date relative to the head commit on the
1018 4ed9f614 2019-08-04 stsp work tree's current branch, the file must be updated with
1019 4ed9f614 2019-08-04 stsp .Cm got update
1020 4ed9f614 2019-08-04 stsp before it can be staged (however, this does not prevent the file from
1021 4ed9f614 2019-08-04 stsp becoming out-of-date at some point after having been staged).
1022 4ed9f614 2019-08-04 stsp .Pp
1023 4ed9f614 2019-08-04 stsp The
1024 4ed9f614 2019-08-04 stsp .Cm got update ,
1025 4ed9f614 2019-08-04 stsp .Cm got rebase ,
1026 4ed9f614 2019-08-04 stsp and
1027 4ed9f614 2019-08-04 stsp .Cm got histedit
1028 4ed9f614 2019-08-04 stsp commands will refuse to run while staged changes exist.
1029 4ed9f614 2019-08-04 stsp If staged changes cannot be committed because a staged path
1030 4ed9f614 2019-08-04 stsp is out of date, the path must be unstaged with
1031 4ed9f614 2019-08-04 stsp .Cm got unstage
1032 4ed9f614 2019-08-04 stsp before it can be updated with
1033 4ed9f614 2019-08-04 stsp .Cm got update ,
1034 4ed9f614 2019-08-04 stsp and may then be staged again if necessary.
1035 4ed9f614 2019-08-04 stsp .It Cm sg
1036 4ed9f614 2019-08-04 stsp Short alias for
1037 4ed9f614 2019-08-04 stsp .Cm stage .
1038 dfc23429 2019-08-11 stsp .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1039 4ed9f614 2019-08-04 stsp Merge staged changes back into the work tree and put affected paths
1040 4ed9f614 2019-08-04 stsp back into non-staged status.
1041 4ed9f614 2019-08-04 stsp If no
1042 4ed9f614 2019-08-04 stsp .Ar path
1043 4ed9f614 2019-08-04 stsp is specified, unstage all staged changes across the entire work tree.
1044 2db2652d 2019-08-07 stsp Otherwise, unstage changes at or within the specified paths.
1045 4ed9f614 2019-08-04 stsp .Pp
1046 4ed9f614 2019-08-04 stsp Show the status of each affected file, using the following status codes:
1047 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
1048 4ed9f614 2019-08-04 stsp .It G Ta file was unstaged
1049 4ed9f614 2019-08-04 stsp .It C Ta file was unstaged and conflicts occurred during merge
1050 4ed9f614 2019-08-04 stsp .It ! Ta changes destined for a missing file were not merged
1051 4ed9f614 2019-08-04 stsp .It D Ta file was staged as deleted and still is deleted
1052 4ed9f614 2019-08-04 stsp .It d Ta file's deletion was obstructed by local modifications
1053 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1054 4ed9f614 2019-08-04 stsp .El
1055 2e1f37b0 2019-08-08 stsp .Pp
1056 2e1f37b0 2019-08-08 stsp The options for
1057 2e1f37b0 2019-08-08 stsp .Cm got unstage
1058 2e1f37b0 2019-08-08 stsp are as follows:
1059 2e1f37b0 2019-08-08 stsp .Bl -tag -width Ds
1060 2e1f37b0 2019-08-08 stsp .It Fl p
1061 2e1f37b0 2019-08-08 stsp Instead of unstaging the entire content of a changed file, interactively
1062 2e1f37b0 2019-08-08 stsp select or reject changes for unstaging based on
1063 2e1f37b0 2019-08-08 stsp .Dq y
1064 2e1f37b0 2019-08-08 stsp (unstage change),
1065 2e1f37b0 2019-08-08 stsp .Dq n
1066 2e1f37b0 2019-08-08 stsp (keep change staged), and
1067 2e1f37b0 2019-08-08 stsp .Dq q
1068 2e1f37b0 2019-08-08 stsp (quit unstaging this file) responses.
1069 2e1f37b0 2019-08-08 stsp If a file is staged in modified status, individual patches derived from the
1070 2e1f37b0 2019-08-08 stsp staged file content can be unstaged.
1071 2e1f37b0 2019-08-08 stsp Files staged in added or deleted status may only be unstaged in their entirety.
1072 2e1f37b0 2019-08-08 stsp .It Fl F Ar response-script
1073 2e1f37b0 2019-08-08 stsp With the
1074 2e1f37b0 2019-08-08 stsp .Fl p
1075 2e1f37b0 2019-08-08 stsp option, read
1076 2e1f37b0 2019-08-08 stsp .Dq y ,
1077 2e1f37b0 2019-08-08 stsp .Dq n ,
1078 2e1f37b0 2019-08-08 stsp and
1079 2e1f37b0 2019-08-08 stsp .Dq q
1080 2e1f37b0 2019-08-08 stsp responses line-by-line from the specified
1081 2e1f37b0 2019-08-08 stsp .Ar response-script
1082 2e1f37b0 2019-08-08 stsp file instead of prompting interactively.
1083 2e1f37b0 2019-08-08 stsp .El
1084 4ed9f614 2019-08-04 stsp .It Cm ug
1085 4ed9f614 2019-08-04 stsp Short alias for
1086 4ed9f614 2019-08-04 stsp .Cm unstage .
1087 4ed9f614 2019-08-04 stsp .El
1088 74416c47 2019-05-09 stsp .Sh ENVIRONMENT
1089 74416c47 2019-05-09 stsp .Bl -tag -width GOT_AUTHOR
1090 74416c47 2019-05-09 stsp .It Ev GOT_AUTHOR
1091 74416c47 2019-05-09 stsp The author's name and email address for
1092 21a44f98 2019-07-15 stsp .Cm got commit
1093 21a44f98 2019-07-15 stsp and
1094 21a44f98 2019-07-15 stsp .Cm got import ,
1095 74416c47 2019-05-09 stsp for example:
1096 0e444aba 2019-08-08 stsp .An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1097 84792843 2019-08-09 stsp Because
1098 0e444aba 2019-08-08 stsp .Xr git 1
1099 84792843 2019-08-09 stsp may fail to parse commits without an email address in author data,
1100 0e444aba 2019-08-08 stsp .Nm
1101 84792843 2019-08-09 stsp attempts to reject
1102 0e444aba 2019-08-08 stsp .Ev GOT_AUTHOR
1103 84792843 2019-08-09 stsp environment variables with a missing email address.
1104 1dd86744 2019-08-12 anthony .It Ev VISUAL , EDITOR
1105 23594da9 2019-05-13 stsp The editor spawned by
1106 23594da9 2019-05-13 stsp .Cm got commit .
1107 b1ebc001 2019-08-13 stsp .It Ev GOT_LOG_DEFAULT_LIMIT
1108 b1ebc001 2019-08-13 stsp The default limit on the number of commits traversed by
1109 b1ebc001 2019-08-13 stsp .Cm got log .
1110 b1ebc001 2019-08-13 stsp If set to zero, the limit is unbounded.
1111 b1ebc001 2019-08-13 stsp This variable will be silently ignored if it is set to a non-numeric value.
1112 74416c47 2019-05-09 stsp .El
1113 5c860e29 2018-03-12 stsp .Sh EXIT STATUS
1114 5c860e29 2018-03-12 stsp .Ex -std got
1115 97925469 2018-03-17 stsp .Sh EXAMPLES
1116 fa6e0e48 2019-05-23 stsp Clone an existing Git repository for use with
1117 fa6e0e48 2019-05-23 stsp .Nm .
1118 fa6e0e48 2019-05-23 stsp This step currently requires
1119 fa6e0e48 2019-05-23 stsp .Xr git 1 :
1120 d83d9d5c 2019-05-13 stsp .Pp
1121 fa6e0e48 2019-05-23 stsp .Dl $ cd /var/git/
1122 fa6e0e48 2019-05-23 stsp .Dl $ git clone --bare https://github.com/openbsd/src.git
1123 fa6e0e48 2019-05-23 stsp .Pp
1124 3ce1b845 2019-07-15 stsp Alternatively, for quick and dirty local testing of
1125 3ce1b845 2019-07-15 stsp .Nm
1126 3ce1b845 2019-07-15 stsp a new Git repository could be created and populated with files,
1127 3ce1b845 2019-07-15 stsp e.g. from a temporary CVS checkout located at
1128 3ce1b845 2019-07-15 stsp .Pa /tmp/src :
1129 fa6e0e48 2019-05-23 stsp .Pp
1130 3ce1b845 2019-07-15 stsp .Dl $ got init /var/git/src.git
1131 2930ef13 2019-07-15 stsp .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1132 3ce1b845 2019-07-15 stsp .Pp
1133 3ce1b845 2019-07-15 stsp Check out a work tree from the Git repository to /usr/src:
1134 3ce1b845 2019-07-15 stsp .Pp
1135 fa6e0e48 2019-05-23 stsp .Dl $ got checkout /var/git/src.git /usr/src
1136 fa6e0e48 2019-05-23 stsp .Pp
1137 e70c17ce 2019-05-22 stsp View local changes in a work tree directory:
1138 e70c17ce 2019-05-22 stsp .Pp
1139 e70c17ce 2019-05-22 stsp .Dl $ got status
1140 e70c17ce 2019-05-22 stsp .Dl $ got diff | less
1141 33aa809d 2019-08-08 stsp .Pp
1142 33aa809d 2019-08-08 stsp Interactively revert selected local changes in a work tree directory:
1143 e70c17ce 2019-05-22 stsp .Pp
1144 33aa809d 2019-08-08 stsp .Dl $ got revert -p -R\ .
1145 33aa809d 2019-08-08 stsp .Pp
1146 e70c17ce 2019-05-22 stsp In a work tree or a git repository directory, list all branch references:
1147 e70c17ce 2019-05-22 stsp .Pp
1148 4e759de4 2019-06-26 stsp .Dl $ got branch -l
1149 e70c17ce 2019-05-22 stsp .Pp
1150 fa6e0e48 2019-05-23 stsp In a work tree or a git repository directory, create a new branch called
1151 e70c17ce 2019-05-22 stsp .Dq unified-buffer-cache
1152 d83d9d5c 2019-05-13 stsp which is forked off the
1153 d83d9d5c 2019-05-13 stsp .Dq master
1154 d83d9d5c 2019-05-13 stsp branch:
1155 d83d9d5c 2019-05-13 stsp .Pp
1156 4e759de4 2019-06-26 stsp .Dl $ got branch unified-buffer-cache master
1157 e70c17ce 2019-05-22 stsp .Pp
1158 e70c17ce 2019-05-22 stsp Switch an existing work tree to the branch
1159 e70c17ce 2019-05-22 stsp .Dq unified-buffer-cache .
1160 e70c17ce 2019-05-22 stsp Local changes in the work tree will be preserved and merged if necessary:
1161 e70c17ce 2019-05-22 stsp .Pp
1162 e70c17ce 2019-05-22 stsp .Dl $ got update -b unified-buffer-cache
1163 e70c17ce 2019-05-22 stsp .Pp
1164 fa6e0e48 2019-05-23 stsp Create a new commit from local changes in a work tree directory.
1165 fa6e0e48 2019-05-23 stsp This new commit will become the head commit of the work tree's current branch:
1166 fa6e0e48 2019-05-23 stsp .Pp
1167 fa6e0e48 2019-05-23 stsp .Dl $ got commit
1168 fa6e0e48 2019-05-23 stsp .Pp
1169 fa6e0e48 2019-05-23 stsp In a work tree or a git repository directory, view changes committed in
1170 fa6e0e48 2019-05-23 stsp the 3 most recent commits to the work tree's branch, or the branch resolved
1171 fa6e0e48 2019-05-23 stsp via the repository's HEAD reference, respectively:
1172 fa6e0e48 2019-05-23 stsp .Pp
1173 cc54c501 2019-07-15 stsp .Dl $ got log -p -l 3 -f
1174 fa6e0e48 2019-05-23 stsp .Pp
1175 e70c17ce 2019-05-22 stsp Add new files and remove obsolete files in a work tree directory:
1176 e70c17ce 2019-05-22 stsp .Pp
1177 fa6e0e48 2019-05-23 stsp .Dl $ got add sys/uvm/uvm_ubc.c
1178 86d25a1b 2019-07-11 stsp .Dl $ got remove sys/uvm/uvm_vnode.c
1179 e70c17ce 2019-05-22 stsp .Pp
1180 e70c17ce 2019-05-22 stsp Create a new commit from local changes in a work tree directory
1181 e70c17ce 2019-05-22 stsp with a pre-defined log message.
1182 e70c17ce 2019-05-22 stsp .Pp
1183 e70c17ce 2019-05-22 stsp .Dl $ got commit -m 'unify the buffer cache'
1184 95fc3404 2019-07-15 stsp .Pp
1185 95fc3404 2019-07-15 stsp Update any work tree checked out from the
1186 95fc3404 2019-07-15 stsp .Dq unified-buffer-cache
1187 95fc3404 2019-07-15 stsp branch to the latest commit on this branch:
1188 95fc3404 2019-07-15 stsp .Pp
1189 95fc3404 2019-07-15 stsp .Dl $ got update
1190 ac90e726 2019-07-15 stsp .Pp
1191 c991308a 2019-07-15 stsp Roll file content on the unified-buffer-cache branch back by one commit,
1192 c991308a 2019-07-15 stsp and then fetch the rolled-back change into the work tree as a local change
1193 ac90e726 2019-07-15 stsp to be amended and perhaps committed again:
1194 e70c17ce 2019-05-22 stsp .Pp
1195 ac90e726 2019-07-15 stsp .Dl $ got backout unified-buffer-cache
1196 ac90e726 2019-07-15 stsp .Dl $ got commit -m 'roll back previous'
1197 59d52b88 2019-07-15 stsp .Dl $ # now back out the previous backout :-)
1198 ac90e726 2019-07-15 stsp .Dl $ got backout unified-buffer-cache
1199 ac90e726 2019-07-15 stsp .Pp
1200 9221fb1e 2019-06-26 stsp Fetch new upstream commits into the local repository's master branch.
1201 9221fb1e 2019-06-26 stsp This step currently requires
1202 9221fb1e 2019-06-26 stsp .Xr git 1 :
1203 fa6e0e48 2019-05-23 stsp .Pp
1204 fa6e0e48 2019-05-23 stsp .Dl $ cd /var/git/src.git
1205 fa6e0e48 2019-05-23 stsp .Dl $ git fetch origin master:master
1206 fa6e0e48 2019-05-23 stsp .Pp
1207 fa6e0e48 2019-05-23 stsp Rebase the
1208 fa6e0e48 2019-05-23 stsp .Dq unified-buffer-cache
1209 fa6e0e48 2019-05-23 stsp branch on top of the new head commit of the
1210 fa6e0e48 2019-05-23 stsp .Dq master
1211 fa6e0e48 2019-05-23 stsp branch.
1212 fa6e0e48 2019-05-23 stsp .Pp
1213 818c7501 2019-07-11 stsp .Dl $ got update -b master
1214 818c7501 2019-07-11 stsp .Dl $ got rebase unified-buffer-cache
1215 7d7ffedb 2019-07-14 stsp .Pp
1216 7d7ffedb 2019-07-14 stsp Create a patch from all changes on the unified-buffer-cache branch.
1217 1dd86744 2019-08-12 anthony The patch can be mailed out for review and applied to
1218 1dd86744 2019-08-12 anthony .Ox Ns 's
1219 1dd86744 2019-08-12 anthony CVS tree:
1220 7d7ffedb 2019-07-14 stsp .Pp
1221 7d7ffedb 2019-07-14 stsp .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1222 7d7ffedb 2019-07-14 stsp .Pp
1223 0ebf8283 2019-07-24 stsp Edit the entire commit history of the
1224 0ebf8283 2019-07-24 stsp .Dq unified-buffer-cache
1225 0ebf8283 2019-07-24 stsp branch:
1226 0ebf8283 2019-07-24 stsp .Pp
1227 0ebf8283 2019-07-24 stsp .Dl $ got update -b unified-buffer-cache
1228 0ebf8283 2019-07-24 stsp .Dl $ got update -c master
1229 0ebf8283 2019-07-24 stsp .Dl $ got histedit
1230 ff2cf171 2019-07-28 stsp .Pp
1231 7b3fde24 2019-07-28 stsp Additional steps are necessary if local changes need to be pushed back
1232 7b3fde24 2019-07-28 stsp to the remote repository, which currently requires
1233 7b3fde24 2019-07-28 stsp .Cm git fetch
1234 7b3fde24 2019-07-28 stsp and
1235 7b3fde24 2019-07-28 stsp .Cm git push .
1236 ff2cf171 2019-07-28 stsp Before working against existing branches in a repository cloned with
1237 ff2cf171 2019-07-28 stsp .Dq git clone --bare ,
1238 ff2cf171 2019-07-28 stsp a Git
1239 ff2cf171 2019-07-28 stsp .Dq refspec
1240 ff2cf171 2019-07-28 stsp must be configured to map all references in the remote repository
1241 ff2cf171 2019-07-28 stsp into the
1242 ff2cf171 2019-07-28 stsp .Dq refs/remotes
1243 ff2cf171 2019-07-28 stsp namespace of the local repository.
1244 ff2cf171 2019-07-28 stsp This can achieved by setting Git's
1245 ff2cf171 2019-07-28 stsp .Pa remote.origin.fetch
1246 ff2cf171 2019-07-28 stsp configuration variable to the value
1247 ff2cf171 2019-07-28 stsp .Dq +refs/heads/*:refs/remotes/origin/*
1248 ff2cf171 2019-07-28 stsp with the
1249 ff2cf171 2019-07-28 stsp .Cm git config
1250 ff2cf171 2019-07-28 stsp command:
1251 ff2cf171 2019-07-28 stsp .Pp
1252 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
1253 ff2cf171 2019-07-28 stsp .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1254 ff2cf171 2019-07-28 stsp .Pp
1255 ff2cf171 2019-07-28 stsp Alternatively, the following
1256 ff2cf171 2019-07-28 stsp .Pa fetch
1257 ff2cf171 2019-07-28 stsp configuration item can be added manually to the Git repository's
1258 ff2cf171 2019-07-28 stsp .Pa config
1259 ff2cf171 2019-07-28 stsp file:
1260 0ebf8283 2019-07-24 stsp .Pp
1261 ff2cf171 2019-07-28 stsp .Dl [remote "origin"]
1262 ff2cf171 2019-07-28 stsp .Dl url = ...
1263 ff2cf171 2019-07-28 stsp .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1264 ff2cf171 2019-07-28 stsp .Pp
1265 fe307c9b 2019-07-28 stsp This configuration leaves the local repository's
1266 ff2cf171 2019-07-28 stsp .Dq refs/heads
1267 ff2cf171 2019-07-28 stsp namespace free for use by local branches checked out with
1268 ff2cf171 2019-07-28 stsp .Cm got checkout
1269 ff2cf171 2019-07-28 stsp and, if needed, created with
1270 ff2cf171 2019-07-28 stsp .Cm got branch .
1271 ff2cf171 2019-07-28 stsp .Pp
1272 ff2cf171 2019-07-28 stsp Branches in the
1273 ff2cf171 2019-07-28 stsp .Dq remotes/origin
1274 ff2cf171 2019-07-28 stsp namespace can be updated with incoming changes from the remote
1275 ff2cf171 2019-07-28 stsp repository with
1276 ff2cf171 2019-07-28 stsp .Cm git fetch :
1277 ff2cf171 2019-07-28 stsp .Pp
1278 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
1279 ff2cf171 2019-07-28 stsp .Dl $ git fetch
1280 ff2cf171 2019-07-28 stsp .Pp
1281 ff2cf171 2019-07-28 stsp Before outgoing changes on the local
1282 ff2cf171 2019-07-28 stsp .Dq master
1283 ff2cf171 2019-07-28 stsp branch can be pushed to the remote repository, the local
1284 ff2cf171 2019-07-28 stsp .Dq master
1285 ff2cf171 2019-07-28 stsp branch must be rebased onto the
1286 ff2cf171 2019-07-28 stsp .Dq origin/master
1287 ff2cf171 2019-07-28 stsp branch:
1288 ff2cf171 2019-07-28 stsp .Pp
1289 ff2cf171 2019-07-28 stsp .Dl $ got update -b origin/master
1290 ff2cf171 2019-07-28 stsp .Dl $ got rebase master
1291 ff2cf171 2019-07-28 stsp .Pp
1292 ff2cf171 2019-07-28 stsp Changes on the local
1293 ff2cf171 2019-07-28 stsp .Dq master
1294 ff2cf171 2019-07-28 stsp branch can then be pushed to the remote
1295 ff2cf171 2019-07-28 stsp repository with
1296 ff2cf171 2019-07-28 stsp .Cm git push :
1297 ff2cf171 2019-07-28 stsp .Pp
1298 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
1299 ff2cf171 2019-07-28 stsp .Dl $ git push origin master
1300 5c860e29 2018-03-12 stsp .Sh SEE ALSO
1301 2312fc47 2019-07-15 stsp .Xr tog 1 ,
1302 2312fc47 2019-07-15 stsp .Xr git-repository 5 ,
1303 285dc8a4 2018-03-13 stsp .Xr got-worktree 5
1304 1a208aaf 2018-04-01 stsp .Sh AUTHORS
1305 1a208aaf 2018-04-01 stsp .An Stefan Sperling Aq Mt stsp@openbsd.org
1306 1a208aaf 2018-04-01 stsp .An Martin Pieuchot Aq Mt mpi@openbsd.org
1307 bc3056e3 2019-08-18 stsp .An Joshua Stein Aq Mt jcs@openbsd.org
1308 fa6e0e48 2019-05-23 stsp .Sh CAVEATS
1309 fa6e0e48 2019-05-23 stsp .Nm
1310 fa6e0e48 2019-05-23 stsp is a work-in-progress and many commands remain to be implemented.
1311 fa6e0e48 2019-05-23 stsp At present, the user has to fall back on
1312 fa6e0e48 2019-05-23 stsp .Xr git 1
1313 ff2cf171 2019-07-28 stsp to perform many tasks, in particular tasks related to repository
1314 ff2cf171 2019-07-28 stsp administration and tasks which require a network connection.