Blame


1 5c860e29 2018-03-12 stsp .\"
2 5c860e29 2018-03-12 stsp .\" Copyright (c) 2017 Martin Pieuchot
3 5aa81393 2020-01-06 stsp .\" Copyright (c) 2018, 2019, 2020 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 83cd27f8 2020-01-13 stsp .It Fl V, -version
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 aba9c984 2019-09-08 stsp environment variable to be set,
94 aba9c984 2019-09-08 stsp unless Git's
95 aba9c984 2019-09-08 stsp .Dv user.name
96 aba9c984 2019-09-08 stsp and
97 709ae9eb 2019-09-08 stsp .Dv user.email
98 709ae9eb 2019-09-08 stsp configuration settings can be obtained from the repository's
99 aba9c984 2019-09-08 stsp .Pa .git/config
100 c9956ddf 2019-09-08 stsp file or from Git's global
101 c9956ddf 2019-09-08 stsp .Pa ~/.gitconfig
102 c9956ddf 2019-09-08 stsp configuration file.
103 3ce1b845 2019-07-15 stsp .Pp
104 3ce1b845 2019-07-15 stsp The options for
105 3ce1b845 2019-07-15 stsp .Cm got import
106 3ce1b845 2019-07-15 stsp are as follows:
107 3ce1b845 2019-07-15 stsp .Bl -tag -width Ds
108 3ce1b845 2019-07-15 stsp .It Fl b Ar branch
109 3ce1b845 2019-07-15 stsp Create the specified
110 3ce1b845 2019-07-15 stsp .Ar branch
111 3ce1b845 2019-07-15 stsp instead of creating the default branch
112 5d67f40d 2019-11-08 stsp .Dq main .
113 3ce1b845 2019-07-15 stsp Use of this option is required if the
114 5d67f40d 2019-11-08 stsp .Dq main
115 3ce1b845 2019-07-15 stsp branch already exists.
116 3ce1b845 2019-07-15 stsp .It Fl m Ar message
117 3ce1b845 2019-07-15 stsp Use the specified log message when creating the new commit.
118 3ce1b845 2019-07-15 stsp Without the
119 3ce1b845 2019-07-15 stsp .Fl m
120 3ce1b845 2019-07-15 stsp option,
121 3ce1b845 2019-07-15 stsp .Cm got import
122 3ce1b845 2019-07-15 stsp opens a temporary file in an editor where a log message can be written.
123 3ce1b845 2019-07-15 stsp .It Fl r Ar repository-path
124 3ce1b845 2019-07-15 stsp Use the repository at the specified path.
125 3ce1b845 2019-07-15 stsp If not specified, assume the repository is located at or above the current
126 3ce1b845 2019-07-15 stsp working directory.
127 3ce1b845 2019-07-15 stsp .It Fl I Ar pattern
128 3ce1b845 2019-07-15 stsp Ignore files or directories with a name which matches the specified
129 3ce1b845 2019-07-15 stsp .Ar pattern .
130 3ce1b845 2019-07-15 stsp This option may be specified multiple times to build a list of ignore patterns.
131 3ce1b845 2019-07-15 stsp The
132 3ce1b845 2019-07-15 stsp .Ar pattern
133 3ce1b845 2019-07-15 stsp follows the globbing rules documented in
134 3ce1b845 2019-07-15 stsp .Xr glob 7 .
135 3ce1b845 2019-07-15 stsp .El
136 bc26cce8 2019-08-04 stsp .It Cm im
137 bc26cce8 2019-08-04 stsp Short alias for
138 bc26cce8 2019-08-04 stsp .Cm import .
139 0e4002ca 2020-03-21 stsp .It Cm clone Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl l Oc Oo Fl m Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Ar repository-URL Op Ar directory
140 2ab43947 2020-03-18 stsp Clone a Git repository at the specified
141 2ab43947 2020-03-18 stsp .Ar repository-URL
142 2ab43947 2020-03-18 stsp into the specified
143 3493b628 2020-03-20 stsp .Ar directory .
144 2ab43947 2020-03-18 stsp If no
145 3493b628 2020-03-20 stsp .Ar directory
146 2ab43947 2020-03-18 stsp is specified the directory name will be derived from the name of the
147 2ab43947 2020-03-18 stsp cloned repository.
148 2ab43947 2020-03-18 stsp .Cm got clone
149 2ab43947 2020-03-18 stsp will refuse to run if the
150 3493b628 2020-03-20 stsp .Ar directory
151 2ab43947 2020-03-18 stsp already exists.
152 2ab43947 2020-03-18 stsp .Pp
153 2ab43947 2020-03-18 stsp The
154 2ab43947 2020-03-18 stsp .Ar repository-URL
155 619eb6dd 2020-03-20 stsp specifies a protocol scheme, a server hostname, an optional port number
156 619eb6dd 2020-03-20 stsp separated from the hostname by a colon, and a path to the repository on
157 619eb6dd 2020-03-20 stsp the server:
158 619eb6dd 2020-03-20 stsp .Lk scheme://hostname:port/path/to/repository
159 2ab43947 2020-03-18 stsp .Pp
160 2ab43947 2020-03-18 stsp The following protocol schemes are supported:
161 2ab43947 2020-03-18 stsp .Bl -tag -width git+ssh
162 2ab43947 2020-03-18 stsp .It git
163 2ab43947 2020-03-18 stsp The Git protocol as implemented by the
164 2ab43947 2020-03-18 stsp .Xr git-daemon 1
165 2ab43947 2020-03-18 stsp server.
166 10c073e7 2020-03-20 stsp Use of this protocol is discouraged since it supports neither authentication
167 10c073e7 2020-03-20 stsp nor encryption.
168 2ab43947 2020-03-18 stsp .It git+ssh
169 2ab43947 2020-03-18 stsp The Git protocol wrapped in an authenticated and encrypted
170 2ab43947 2020-03-18 stsp .Xr ssh 1
171 2ab43947 2020-03-18 stsp tunnel.
172 2ab43947 2020-03-18 stsp With this protocol the hostname may contain an embedded username for
173 2ab43947 2020-03-18 stsp .Xr ssh 1
174 2ab43947 2020-03-18 stsp to use:
175 2ab43947 2020-03-18 stsp .Mt user@hostname
176 2ab43947 2020-03-18 stsp .It ssh
177 2ab43947 2020-03-18 stsp Short alias for git+ssh.
178 2ab43947 2020-03-18 stsp .El
179 89c3c67b 2020-03-20 stsp .Pp
180 89c3c67b 2020-03-20 stsp Objects in the cloned repository are stored in a pack file which is downloaded
181 89c3c67b 2020-03-20 stsp from the server.
182 89c3c67b 2020-03-20 stsp This pack file will then be indexed to facilitate access to the objects stored
183 89c3c67b 2020-03-20 stsp within.
184 89c3c67b 2020-03-20 stsp If any objects in the pack file are stored in deltified form, all deltas will
185 89c3c67b 2020-03-20 stsp be fully resolved in order to compute the ID of such objects.
186 89c3c67b 2020-03-20 stsp This can take some time.
187 010f7279 2020-03-20 stsp More details about the pack file format are documented in
188 010f7279 2020-03-20 stsp .Xr git-repository 5 .
189 2ab43947 2020-03-18 stsp .Pp
190 7848a0e1 2020-03-19 stsp .Cm got clone
191 7848a0e1 2020-03-19 stsp creates a remote repository entry in the
192 7848a0e1 2020-03-19 stsp .Pa config
193 7848a0e1 2020-03-19 stsp file of the cloned repository to store the
194 7848a0e1 2020-03-19 stsp .Ar repository-url
195 7848a0e1 2020-03-19 stsp for future use by
196 7848a0e1 2020-03-19 stsp .Cm got fetch
197 fc24bb3a 2020-03-21 stsp or
198 7848a0e1 2020-03-19 stsp .Xr git-fetch 1 .
199 7848a0e1 2020-03-19 stsp .Pp
200 2ab43947 2020-03-18 stsp The options for
201 2ab43947 2020-03-18 stsp .Cm got clone
202 2ab43947 2020-03-18 stsp are as follows:
203 2ab43947 2020-03-18 stsp .Bl -tag -width Ds
204 659e7fbd 2020-03-20 stsp .It Fl a
205 1d4b192f 2020-03-21 stsp Fetch all branches from the remote repository's
206 1d4b192f 2020-03-21 stsp .Dq refs/heads/
207 1d4b192f 2020-03-21 stsp reference namespace.
208 4ba14133 2020-03-20 stsp If this option is not specified, a branch resolved via the remote
209 4ba14133 2020-03-20 stsp repository's HEAD reference will be fetched.
210 4ba14133 2020-03-20 stsp Cannot be used together with the
211 4ba14133 2020-03-20 stsp .Fl b
212 4ba14133 2020-03-20 stsp option.
213 4ba14133 2020-03-20 stsp .It Fl b Ar branch
214 4ba14133 2020-03-20 stsp Fetch the specified
215 4ba14133 2020-03-20 stsp .Ar branch
216 1d4b192f 2020-03-21 stsp from the remote repository's
217 1d4b192f 2020-03-21 stsp .Dq refs/heads/
218 1d4b192f 2020-03-21 stsp reference namespace.
219 4ba14133 2020-03-20 stsp This option may be specified multiple times to build a list of branches
220 4ba14133 2020-03-20 stsp to fetch.
221 4ba14133 2020-03-20 stsp If the branch corresponding to the remote repository's HEAD reference is not
222 4ba14133 2020-03-20 stsp in this list, the cloned repository's HEAD reference will be set to the first
223 4ba14133 2020-03-20 stsp branch which was fetched.
224 4ba14133 2020-03-20 stsp If this option is not specified, a branch resolved via the remote
225 4ba14133 2020-03-20 stsp repository's HEAD reference will be fetched.
226 4ba14133 2020-03-20 stsp Cannot be used together with the
227 4ba14133 2020-03-20 stsp .Fl a
228 4ba14133 2020-03-20 stsp option.
229 41b0de12 2020-03-21 stsp .It Fl l
230 a18cccf9 2020-03-21 stsp List branches and tags available for fetching from the remote repository
231 41b0de12 2020-03-21 stsp and exit immediately.
232 41b0de12 2020-03-21 stsp Cannot be used together with any of the other options except
233 41b0de12 2020-03-21 stsp .Fl v .
234 469dd726 2020-03-20 stsp .It Fl m
235 469dd726 2020-03-20 stsp Create the cloned repository as a mirror of the original repository.
236 469dd726 2020-03-20 stsp This is useful if the cloned repository will not be used to store
237 469dd726 2020-03-20 stsp local changes as created by
238 469dd726 2020-03-20 stsp .Cm got commit .
239 469dd726 2020-03-20 stsp .Pp
240 469dd726 2020-03-20 stsp The repository's
241 469dd726 2020-03-20 stsp .Pa config
242 469dd726 2020-03-20 stsp file will be set up with the
243 469dd726 2020-03-20 stsp .Dq mirror
244 469dd726 2020-03-20 stsp option enabled, such that
245 469dd726 2020-03-20 stsp .Cm got fetch
246 469dd726 2020-03-20 stsp or
247 469dd726 2020-03-20 stsp .Xr git-fetch 1
248 498ef124 2020-03-21 stsp will write incoming changes directly to local branches in the
249 469dd726 2020-03-20 stsp .Dq refs/heads/
250 469dd726 2020-03-20 stsp reference namespace, rather than to branches in the
251 469dd726 2020-03-20 stsp .Dq refs/remotes/
252 469dd726 2020-03-20 stsp namespace.
253 469dd726 2020-03-20 stsp This avoids the usual requirement of having to run
254 469dd726 2020-03-20 stsp .Cm got rebase
255 469dd726 2020-03-20 stsp after
256 469dd726 2020-03-20 stsp .Cm got fetch
257 498ef124 2020-03-21 stsp in order to make incoming changes appear on local branches.
258 498ef124 2020-03-21 stsp But maintaining local changes in the cloned repository becomes difficult
259 498ef124 2020-03-21 stsp since local changes will be at risk of being discarded whenever incoming
260 498ef124 2020-03-21 stsp changes are fetched.
261 2ab43947 2020-03-18 stsp .It Fl q
262 2ab43947 2020-03-18 stsp Suppress progress reporting output.
263 2ab43947 2020-03-18 stsp The same option will be passed to
264 2ab43947 2020-03-18 stsp .Xr ssh 1
265 2ab43947 2020-03-18 stsp if applicable.
266 2ab43947 2020-03-18 stsp .It Fl v
267 2690194b 2020-03-21 stsp Verbose mode.
268 2690194b 2020-03-21 stsp Causes
269 2690194b 2020-03-21 stsp .Cm got clone
270 2690194b 2020-03-21 stsp to print debugging messages to standard error output.
271 2690194b 2020-03-21 stsp This option will be passed to
272 2ab43947 2020-03-18 stsp .Xr ssh 1
273 2ab43947 2020-03-18 stsp if applicable.
274 2ab43947 2020-03-18 stsp Multiple -v options increase the verbosity.
275 2ab43947 2020-03-18 stsp The maximum is 3.
276 0e4002ca 2020-03-21 stsp .It Fl R Ar reference
277 0e4002ca 2020-03-21 stsp In addition to the branches and tags that will be fetched, fetch an arbitrary
278 0e4002ca 2020-03-21 stsp .Ar reference
279 0e4002ca 2020-03-21 stsp from the remote repository's
280 0e4002ca 2020-03-21 stsp .Dq refs/
281 0e4002ca 2020-03-21 stsp namespace.
282 0e4002ca 2020-03-21 stsp This option may be specified multiple times to build a list of additional
283 0e4002ca 2020-03-21 stsp references to fetch.
284 71f12362 2020-03-21 stsp The specified
285 71f12362 2020-03-21 stsp .Ar reference
286 a18cccf9 2020-03-21 stsp may either be a path to a specific reference, or a reference namespace
287 71f12362 2020-03-21 stsp which will cause all references in this namespace to be fetched.
288 0e4002ca 2020-03-21 stsp .Pp
289 71f12362 2020-03-21 stsp Each reference will be mapped into the cloned repository's
290 0e4002ca 2020-03-21 stsp .Dq refs/remotes/
291 0e4002ca 2020-03-21 stsp namespace, unless the
292 0e4002ca 2020-03-21 stsp .Fl m
293 0e4002ca 2020-03-21 stsp option is used to mirror references directly into the cloned repository's
294 0e4002ca 2020-03-21 stsp .Dq refs/
295 0e4002ca 2020-03-21 stsp namespace.
296 0e4002ca 2020-03-21 stsp .Pp
297 0e4002ca 2020-03-21 stsp .Cm got clone
298 0e4002ca 2020-03-21 stsp will refuse to fetch references from the remote repository's
299 0e4002ca 2020-03-21 stsp .Dq refs/remotes/
300 0e4002ca 2020-03-21 stsp or
301 0e4002ca 2020-03-21 stsp .Dq refs/got/
302 0e4002ca 2020-03-21 stsp namespace.
303 2ab43947 2020-03-18 stsp .El
304 267fe567 2020-03-18 stsp .It Cm cl
305 267fe567 2020-03-18 stsp Short alias for
306 267fe567 2020-03-18 stsp .Cm clone .
307 4d482d9d 2020-03-21 stsp .It Cm fetch Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl d Oc Oo Fl l Oc Oo Fl r Ar repository-path Oc Oo Fl t Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Op Ar remote-repository
308 7848a0e1 2020-03-19 stsp Fetch new changes from a remote repository.
309 7848a0e1 2020-03-19 stsp If no
310 4ba14133 2020-03-20 stsp .Ar remote-repository
311 4ba14133 2020-03-20 stsp is specified,
312 7848a0e1 2020-03-19 stsp .Dq origin
313 7848a0e1 2020-03-19 stsp will be used.
314 7848a0e1 2020-03-19 stsp The remote repository's URL is obtained from the corresponding entry in the
315 7848a0e1 2020-03-19 stsp .Pa config
316 f8ab0c60 2020-03-20 stsp file of the local repository, as created by
317 7848a0e1 2020-03-19 stsp .Cm got clone .
318 7848a0e1 2020-03-19 stsp .Pp
319 89c3c67b 2020-03-20 stsp New changes will be stored in a separate pack file downloaded from the server.
320 89c3c67b 2020-03-20 stsp Optionally, separate pack files stored in the repository can be combined with
321 89c3c67b 2020-03-20 stsp .Xr git-repack 1 .
322 89c3c67b 2020-03-20 stsp .Pp
323 498ef124 2020-03-21 stsp By default, branch references in the
324 7848a0e1 2020-03-19 stsp .Dq refs/remotes/
325 498ef124 2020-03-21 stsp reference namespace will be updated to point at the newly fetched commits.
326 498ef124 2020-03-21 stsp The
327 498ef124 2020-03-21 stsp .Cm got rebase
328 498ef124 2020-03-21 stsp command can then be used to make new changes visible on local branches in the
329 7848a0e1 2020-03-19 stsp .Dq refs/heads/
330 498ef124 2020-03-21 stsp namespace, merging incoming changes with local changes as necessary.
331 7848a0e1 2020-03-19 stsp .Pp
332 498ef124 2020-03-21 stsp If the repository was created as a mirror with
333 498ef124 2020-03-21 stsp .Cm got clone -m
334 498ef124 2020-03-21 stsp then all branches in the
335 469dd726 2020-03-20 stsp .Dq refs/heads/
336 498ef124 2020-03-21 stsp namespace will be updated directly to match the corresponding branches in
337 498ef124 2020-03-21 stsp the remote repository.
338 175367bd 2020-03-20 stsp If those branches contained local commits, these commits will no longer be
339 175367bd 2020-03-20 stsp reachable via a reference and will therefore be at risk of being discarded
340 175367bd 2020-03-20 stsp by Git's garbage collector.
341 498ef124 2020-03-21 stsp Maintaining local changes in a mirror repository is therefore discouraged.
342 469dd726 2020-03-20 stsp .Pp
343 db6d8ad8 2020-03-21 stsp In any case, references in the
344 7848a0e1 2020-03-19 stsp .Dq refs/tags/
345 db6d8ad8 2020-03-21 stsp namespace will always be fetched and mapped directly to local references
346 db6d8ad8 2020-03-21 stsp in the same namespace.
347 7848a0e1 2020-03-19 stsp .Pp
348 7848a0e1 2020-03-19 stsp The options for
349 7848a0e1 2020-03-19 stsp .Cm got fetch
350 7848a0e1 2020-03-19 stsp are as follows:
351 7848a0e1 2020-03-19 stsp .Bl -tag -width Ds
352 659e7fbd 2020-03-20 stsp .It Fl a
353 1d4b192f 2020-03-21 stsp Fetch all branches from the remote repository's
354 1d4b192f 2020-03-21 stsp .Dq refs/heads/
355 1d4b192f 2020-03-21 stsp reference namespace.
356 4ba14133 2020-03-20 stsp If this option is not specified, a branch resolved via the remote
357 4ba14133 2020-03-20 stsp repository's HEAD reference will be fetched.
358 4ba14133 2020-03-20 stsp Cannot be used together with the
359 4ba14133 2020-03-20 stsp .Fl b
360 4ba14133 2020-03-20 stsp option.
361 4ba14133 2020-03-20 stsp .It Fl b Ar branch
362 4ba14133 2020-03-20 stsp Fetch the specified
363 4ba14133 2020-03-20 stsp .Ar branch
364 1d4b192f 2020-03-21 stsp from the remote repository's
365 1d4b192f 2020-03-21 stsp .Dq refs/heads/
366 1d4b192f 2020-03-21 stsp reference namespace.
367 4ba14133 2020-03-20 stsp This option may be specified multiple times to build a list of branches
368 4ba14133 2020-03-20 stsp to fetch.
369 4ba14133 2020-03-20 stsp If this option is not specified, a branch resolved via the remote
370 4ba14133 2020-03-20 stsp repository's HEAD reference will be fetched.
371 4ba14133 2020-03-20 stsp Cannot be used together with the
372 4ba14133 2020-03-20 stsp .Fl a
373 4ba14133 2020-03-20 stsp option.
374 f21ec2f0 2020-03-21 stsp .It Fl d
375 f21ec2f0 2020-03-21 stsp Delete branches and tags from the local repository which are no longer
376 f21ec2f0 2020-03-21 stsp present in the remote repository.
377 f21ec2f0 2020-03-21 stsp Only references are deleted.
378 239821eb 2020-03-21 stsp Any commit, tree, tag, and blob objects belonging to deleted branches or
379 f21ec2f0 2020-03-21 stsp tags remain in the repository and may be removed separately with
380 f21ec2f0 2020-03-21 stsp Git's garbage collector.
381 41b0de12 2020-03-21 stsp .It Fl l
382 41b0de12 2020-03-21 stsp List branches and tags available for fetching from the remote repository
383 41b0de12 2020-03-21 stsp and exit immediately.
384 41b0de12 2020-03-21 stsp Cannot be used together with any of the other options except
385 41b0de12 2020-03-21 stsp .Fl v
386 41b0de12 2020-03-21 stsp and
387 41b0de12 2020-03-21 stsp .Fl r .
388 db6d8ad8 2020-03-21 stsp .It Fl t
389 db6d8ad8 2020-03-21 stsp Allow existing references in the
390 db6d8ad8 2020-03-21 stsp .Dq refs/tags
391 db6d8ad8 2020-03-21 stsp namespace to be updated if they have changed on the server.
392 db6d8ad8 2020-03-21 stsp If not specified, only new tag references will be created.
393 7848a0e1 2020-03-19 stsp .It Fl r Ar repository-path
394 7848a0e1 2020-03-19 stsp Use the repository at the specified path.
395 7848a0e1 2020-03-19 stsp If not specified, assume the repository is located at or above the current
396 7848a0e1 2020-03-19 stsp working directory.
397 7848a0e1 2020-03-19 stsp If this directory is a
398 7848a0e1 2020-03-19 stsp .Nm
399 7848a0e1 2020-03-19 stsp work tree, use the repository path associated with this work tree.
400 7848a0e1 2020-03-19 stsp .It Fl q
401 7848a0e1 2020-03-19 stsp Suppress progress reporting output.
402 7848a0e1 2020-03-19 stsp The same option will be passed to
403 7848a0e1 2020-03-19 stsp .Xr ssh 1
404 7848a0e1 2020-03-19 stsp if applicable.
405 7848a0e1 2020-03-19 stsp .It Fl v
406 2690194b 2020-03-21 stsp Verbose mode.
407 2690194b 2020-03-21 stsp Causes
408 2690194b 2020-03-21 stsp .Cm got fetch
409 2690194b 2020-03-21 stsp to print debugging messages to standard error output.
410 7848a0e1 2020-03-19 stsp The same option will be passed to
411 7848a0e1 2020-03-19 stsp .Xr ssh 1
412 7848a0e1 2020-03-19 stsp if applicable.
413 7848a0e1 2020-03-19 stsp Multiple -v options increase the verbosity.
414 7848a0e1 2020-03-19 stsp The maximum is 3.
415 0e4002ca 2020-03-21 stsp .It Fl R Ar reference
416 0e4002ca 2020-03-21 stsp In addition to the branches and tags that will be fetched, fetch an arbitrary
417 0e4002ca 2020-03-21 stsp .Ar reference
418 0e4002ca 2020-03-21 stsp from the remote repository's
419 0e4002ca 2020-03-21 stsp .Dq refs/
420 0e4002ca 2020-03-21 stsp namespace.
421 0e4002ca 2020-03-21 stsp This option may be specified multiple times to build a list of additional
422 0e4002ca 2020-03-21 stsp references to fetch.
423 71f12362 2020-03-21 stsp The specified
424 71f12362 2020-03-21 stsp .Ar reference
425 a18cccf9 2020-03-21 stsp may either be a path to a specific reference, or a reference namespace
426 71f12362 2020-03-21 stsp which will cause all references in this namespace to be fetched.
427 0e4002ca 2020-03-21 stsp .Pp
428 0e4002ca 2020-03-21 stsp Each reference will be mapped into the local repository's
429 0e4002ca 2020-03-21 stsp .Dq refs/remotes/
430 0e4002ca 2020-03-21 stsp namespace, unless the local repository was created as a mirror with
431 a18cccf9 2020-03-21 stsp .Cm got clone -m
432 a18cccf9 2020-03-21 stsp in which case references will be mapped directly into the local repository's
433 a18cccf9 2020-03-21 stsp .Dq refs/
434 a18cccf9 2020-03-21 stsp namespace.
435 a18cccf9 2020-03-21 stsp .Pp
436 0e4002ca 2020-03-21 stsp Once a reference has been fetched, a local branch based on it can be
437 0e4002ca 2020-03-21 stsp created with
438 0e4002ca 2020-03-21 stsp .Cm got branch
439 0e4002ca 2020-03-21 stsp if needed.
440 0e4002ca 2020-03-21 stsp .Pp
441 0e4002ca 2020-03-21 stsp .Cm got fetch
442 0e4002ca 2020-03-21 stsp will refuse to fetch references from the remote repository's
443 0e4002ca 2020-03-21 stsp .Dq refs/remotes/
444 0e4002ca 2020-03-21 stsp or
445 0e4002ca 2020-03-21 stsp .Dq refs/got/
446 0e4002ca 2020-03-21 stsp namespace.
447 7848a0e1 2020-03-19 stsp .El
448 7848a0e1 2020-03-19 stsp .It Cm fe
449 7848a0e1 2020-03-19 stsp Short alias for
450 7848a0e1 2020-03-19 stsp .Cm fetch .
451 74daf7cb 2020-01-27 stsp .It Cm checkout Oo Fl E Oc 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
452 0bb8a95e 2018-03-12 stsp Copy files from a repository into a new work tree.
453 bb51a5b4 2020-01-13 stsp Show the status of each affected file, using the following status codes:
454 bb51a5b4 2020-01-13 stsp .Bl -column YXZ description
455 bb51a5b4 2020-01-13 stsp .It A Ta new file was added
456 bb51a5b4 2020-01-13 stsp .It E Ta file already exists in work tree's meta-data
457 bb51a5b4 2020-01-13 stsp .El
458 bb51a5b4 2020-01-13 stsp .Pp
459 5d7c1dab 2018-04-01 stsp If the
460 5d7c1dab 2018-04-01 stsp .Ar work tree path
461 c844a238 2019-02-06 stsp is not specified, either use the last component of
462 5d7c1dab 2018-04-01 stsp .Ar repository path ,
463 5d7c1dab 2018-04-01 stsp or if a
464 5d7c1dab 2018-04-01 stsp .Ar path prefix
465 c844a238 2019-02-06 stsp was specified use the last component of
466 5d7c1dab 2018-04-01 stsp .Ar path prefix .
467 38e11793 2018-06-13 stsp .Pp
468 38e11793 2018-06-13 stsp The options for
469 38e11793 2018-06-13 stsp .Cm got checkout
470 38e11793 2018-06-13 stsp are as follows:
471 38e11793 2018-06-13 stsp .Bl -tag -width Ds
472 bb51a5b4 2020-01-13 stsp .It Fl E
473 bb51a5b4 2020-01-13 stsp Proceed with the checkout operation even if the directory at
474 bb51a5b4 2020-01-13 stsp .Ar work-tree-path
475 bb51a5b4 2020-01-13 stsp is not empty.
476 bb51a5b4 2020-01-13 stsp Existing files will be left intact.
477 08573d5b 2019-05-14 stsp .It Fl b Ar branch
478 3c575567 2019-07-28 stsp Check out files from a commit on the specified
479 08573d5b 2019-05-14 stsp .Ar branch .
480 08573d5b 2019-05-14 stsp If this option is not specified, a branch resolved via the repository's HEAD
481 08573d5b 2019-05-14 stsp reference will be used.
482 8069f636 2019-01-12 stsp .It Fl c Ar commit
483 8069f636 2019-01-12 stsp Check out files from the specified
484 3c575567 2019-07-28 stsp .Ar commit
485 3c575567 2019-07-28 stsp on the selected branch.
486 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
487 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
488 0e1b0230 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
489 0e1b0230 2019-07-07 stsp automatically, provided the abbreviation is unique.
490 08573d5b 2019-05-14 stsp If this option is not specified, the most recent commit on the selected
491 08573d5b 2019-05-14 stsp branch will be used.
492 4b6c9460 2020-03-05 stsp .Pp
493 4b6c9460 2020-03-05 stsp If the specified
494 4b6c9460 2020-03-05 stsp .Ar commit
495 4b6c9460 2020-03-05 stsp is not contained in the selected branch, a different branch which contains
496 4b6c9460 2020-03-05 stsp this commit must be specified with the
497 4b6c9460 2020-03-05 stsp .Fl b
498 4b6c9460 2020-03-05 stsp option.
499 4b6c9460 2020-03-05 stsp If no such branch is known a new branch must be created for this
500 4b6c9460 2020-03-05 stsp commit with
501 4b6c9460 2020-03-05 stsp .Cm got branch
502 4b6c9460 2020-03-05 stsp before
503 4b6c9460 2020-03-05 stsp .Cm got checkout
504 4b6c9460 2020-03-05 stsp can be used.
505 4b6c9460 2020-03-05 stsp Checking out work trees with an unknown branch is intentionally not supported.
506 38e11793 2018-06-13 stsp .It Fl p Ar path-prefix
507 38e11793 2018-06-13 stsp Restrict the work tree to a subset of the repository's tree hierarchy.
508 38e11793 2018-06-13 stsp Only files beneath the specified
509 38e11793 2018-06-13 stsp .Ar path-prefix
510 38e11793 2018-06-13 stsp will be checked out.
511 38e11793 2018-06-13 stsp .El
512 97b3a7be 2019-07-09 stsp .It Cm co
513 97b3a7be 2019-07-09 stsp Short alias for
514 97b3a7be 2019-07-09 stsp .Cm checkout .
515 dfc23429 2019-08-11 stsp .It Cm update Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Op Ar path ...
516 4f331d3a 2020-04-01 stsp Update an existing work tree to a different
517 4f331d3a 2020-04-01 stsp .Ar commit .
518 4f331d3a 2020-04-01 stsp Change existing files in the work tree as necessary to match file contents
519 4f331d3a 2020-04-01 stsp of this commit.
520 4f331d3a 2020-04-01 stsp Preserve any local changes in the work tree and merge them with the
521 4f331d3a 2020-04-01 stsp incoming changes.
522 4f331d3a 2020-04-01 stsp .Pp
523 7f838b36 2019-02-08 stsp Show the status of each affected file, using the following status codes:
524 7f838b36 2019-02-08 stsp .Bl -column YXZ description
525 7f838b36 2019-02-08 stsp .It U Ta file was updated and contained no local changes
526 7f838b36 2019-02-08 stsp .It G Ta file was updated and local changes were merged cleanly
527 7f838b36 2019-02-08 stsp .It C Ta file was updated and conflicts occurred during merge
528 7f838b36 2019-02-08 stsp .It D Ta file was deleted
529 7f838b36 2019-02-08 stsp .It A Ta new file was added
530 1dd86744 2019-08-12 anthony .It \(a~ Ta versioned file is obstructed by a non-regular file
531 a378724f 2019-02-10 stsp .It ! Ta a missing versioned file was restored
532 7f838b36 2019-02-08 stsp .El
533 7f838b36 2019-02-08 stsp .Pp
534 f2ea84fa 2019-07-27 stsp If no
535 c4cdcb68 2019-04-03 stsp .Ar path
536 f2ea84fa 2019-07-27 stsp is specified, update the entire work tree.
537 f2ea84fa 2019-07-27 stsp Otherwise, restrict the update operation to files at or within the
538 f2ea84fa 2019-07-27 stsp specified paths.
539 f2ea84fa 2019-07-27 stsp Each path is required to exist in the update operation's target commit.
540 f2ea84fa 2019-07-27 stsp Files in the work tree outside specified paths will remain unchanged and
541 f2ea84fa 2019-07-27 stsp will retain their previously recorded base commit.
542 f2cf8fbb 2019-04-04 stsp Some
543 f2cf8fbb 2019-04-04 stsp .Nm
544 f2cf8fbb 2019-04-04 stsp commands may refuse to run while the work tree contains files from
545 c4cdcb68 2019-04-03 stsp multiple base commits.
546 f2cf8fbb 2019-04-04 stsp The base commit of such a work tree can be made consistent by running
547 47ec7be7 2019-05-12 stsp .Cm got update
548 47ec7be7 2019-05-12 stsp across the entire work tree.
549 024e9686 2019-05-14 stsp Specifying a
550 024e9686 2019-05-14 stsp .Ar path
551 024e9686 2019-05-14 stsp is incompatible with the
552 024e9686 2019-05-14 stsp .Fl b
553 024e9686 2019-05-14 stsp option.
554 7f838b36 2019-02-08 stsp .Pp
555 4ed9f614 2019-08-04 stsp .Cm got update
556 4ed9f614 2019-08-04 stsp cannot update paths with staged changes.
557 4ed9f614 2019-08-04 stsp If changes have been staged with
558 4ed9f614 2019-08-04 stsp .Cm got stage ,
559 bc3056e3 2019-08-18 stsp these changes must first be committed with
560 4ed9f614 2019-08-04 stsp .Cm got commit
561 4ed9f614 2019-08-04 stsp or unstaged with
562 4ed9f614 2019-08-04 stsp .Cm got unstage .
563 4ed9f614 2019-08-04 stsp .Pp
564 507dc3bb 2018-12-29 stsp The options for
565 507dc3bb 2018-12-29 stsp .Cm got update
566 507dc3bb 2018-12-29 stsp are as follows:
567 507dc3bb 2018-12-29 stsp .Bl -tag -width Ds
568 024e9686 2019-05-14 stsp .It Fl b Ar branch
569 024e9686 2019-05-14 stsp Switch the work tree's branch reference to the specified
570 024e9686 2019-05-14 stsp .Ar branch
571 024e9686 2019-05-14 stsp before updating the work tree.
572 024e9686 2019-05-14 stsp This option requires that all paths in the work tree are updated.
573 4f331d3a 2020-04-01 stsp .Pp
574 4f331d3a 2020-04-01 stsp As usual, any local changes in the work tree will be preserved.
575 4f331d3a 2020-04-01 stsp This can be useful when switching to a newly created branch in order
576 4f331d3a 2020-04-01 stsp to commit existing local changes to this branch.
577 4f331d3a 2020-04-01 stsp .Pp
578 4f331d3a 2020-04-01 stsp Any local changes must be dealt with separately in order to obtain a
579 4f331d3a 2020-04-01 stsp work tree with pristine file contents corresponding exactly to the specified
580 4f331d3a 2020-04-01 stsp .Ar branch .
581 4f331d3a 2020-04-01 stsp Such changes could first be committed to a different branch with
582 4f331d3a 2020-04-01 stsp .Cm got commit ,
583 4f331d3a 2020-04-01 stsp or could be discarded with
584 4f331d3a 2020-04-01 stsp .Cm got revert .
585 507dc3bb 2018-12-29 stsp .It Fl c Ar commit
586 507dc3bb 2018-12-29 stsp Update the work tree to the specified
587 507dc3bb 2018-12-29 stsp .Ar commit .
588 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
589 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
590 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
591 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
592 024e9686 2019-05-14 stsp If this option is not specified, the most recent commit on the work tree's
593 024e9686 2019-05-14 stsp branch will be used.
594 507dc3bb 2018-12-29 stsp .El
595 97b3a7be 2019-07-09 stsp .It Cm up
596 97b3a7be 2019-07-09 stsp Short alias for
597 97b3a7be 2019-07-09 stsp .Cm update .
598 dfc23429 2019-08-11 stsp .It Cm status Op Ar path ...
599 6cd959e6 2019-03-26 stsp Show the current modification status of files in a work tree,
600 6bad629b 2019-02-04 stsp using the following status codes:
601 6bad629b 2019-02-04 stsp .Bl -column YXZ description
602 6bad629b 2019-02-04 stsp .It M Ta modified file
603 079890a9 2019-03-26 stsp .It A Ta file scheduled for addition in next commit
604 079890a9 2019-03-26 stsp .It D Ta file scheduled for deletion in next commit
605 7154f6ce 2019-03-27 stsp .It C Ta modified or added file which contains merge conflicts
606 6bad629b 2019-02-04 stsp .It ! Ta versioned file was expected on disk but is missing
607 1dd86744 2019-08-12 anthony .It \(a~ Ta versioned file is obstructed by a non-regular file
608 6bad629b 2019-02-04 stsp .It ? Ta unversioned item not tracked by
609 6bad629b 2019-02-04 stsp .Nm
610 1ebedb77 2019-10-19 stsp .It m Ta modified file modes (executable bit only)
611 2a06fe5f 2019-08-24 stsp .It N Ta non-existent
612 2a06fe5f 2019-08-24 stsp .Ar path
613 2a06fe5f 2019-08-24 stsp specified on the command line
614 6bad629b 2019-02-04 stsp .El
615 6bad629b 2019-02-04 stsp .Pp
616 72ea6654 2019-07-27 stsp If no
617 927df6b7 2019-02-10 stsp .Ar path
618 72ea6654 2019-07-27 stsp is specified, show modifications in the entire work tree.
619 72ea6654 2019-07-27 stsp Otherwise, show modifications at or within the specified paths.
620 4ed9f614 2019-08-04 stsp .Pp
621 4ed9f614 2019-08-04 stsp If changes have been staged with
622 4ed9f614 2019-08-04 stsp .Cm got stage ,
623 4ed9f614 2019-08-04 stsp staged changes are shown in the second output column, using the following
624 4ed9f614 2019-08-04 stsp status codes:
625 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
626 4ed9f614 2019-08-04 stsp .It M Ta file modification is staged
627 4ed9f614 2019-08-04 stsp .It A Ta file addition is staged
628 4ed9f614 2019-08-04 stsp .It D Ta file deletion is staged
629 4ed9f614 2019-08-04 stsp .El
630 4ed9f614 2019-08-04 stsp .Pp
631 95ac67f0 2019-08-08 stsp Changes created on top of staged changes are indicated in the first column:
632 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
633 95ac67f0 2019-08-08 stsp .It MM Ta file was modified after earlier changes have been staged
634 95ac67f0 2019-08-08 stsp .It MA Ta file was modified after having been staged for addition
635 4ed9f614 2019-08-04 stsp .El
636 6841da00 2019-08-08 stsp .Pp
637 6841da00 2019-08-08 stsp For compatibility with
638 bd8de430 2019-10-04 stsp .Xr cvs 1
639 bd8de430 2019-10-04 stsp and
640 bd8de430 2019-10-04 stsp .Xr git 1 ,
641 6841da00 2019-08-08 stsp .Cm got status
642 bd8de430 2019-10-04 stsp reads
643 bd8de430 2019-10-04 stsp .Xr glob 7
644 bd8de430 2019-10-04 stsp patterns from
645 6841da00 2019-08-08 stsp .Pa .cvsignore
646 bd8de430 2019-10-04 stsp and
647 bd8de430 2019-10-04 stsp .Pa .gitignore
648 6841da00 2019-08-08 stsp files in each traversed directory and will not display unversioned files
649 bd8de430 2019-10-04 stsp which match these patterns.
650 bd8de430 2019-10-04 stsp As an extension to
651 6841da00 2019-08-08 stsp .Xr glob 7
652 bd8de430 2019-10-04 stsp matching rules,
653 bd8de430 2019-10-04 stsp .Cm got status
654 bd8de430 2019-10-04 stsp supports consecutive asterisks,
655 bd8de430 2019-10-04 stsp .Dq ** ,
656 bd8de430 2019-10-04 stsp which will match an arbitrary amount of directories.
657 6841da00 2019-08-08 stsp Unlike
658 6841da00 2019-08-08 stsp .Xr cvs 1 ,
659 6841da00 2019-08-08 stsp .Cm got status
660 6841da00 2019-08-08 stsp only supports a single ignore pattern per line.
661 bd8de430 2019-10-04 stsp Unlike
662 bd8de430 2019-10-04 stsp .Xr git 1 ,
663 bd8de430 2019-10-04 stsp .Cm got status
664 bd8de430 2019-10-04 stsp does not support negated ignore patterns prefixed with
665 bd8de430 2019-10-04 stsp .Dq \&! ,
666 bd8de430 2019-10-04 stsp and gives no special significance to the location of path component separators,
667 bd8de430 2019-10-04 stsp .Dq / ,
668 bd8de430 2019-10-04 stsp in a pattern.
669 97b3a7be 2019-07-09 stsp .It Cm st
670 97b3a7be 2019-07-09 stsp Short alias for
671 97b3a7be 2019-07-09 stsp .Cm status .
672 d1fe46f9 2020-04-18 stsp .It Cm log Oo Fl b Oc Oo Fl c Ar commit Oc Oo Fl C Ar number Oc Oo Fl l Ar N Oc Oo Fl p Oc Oo Fl s Ar search-pattern Oc Oo Fl r Ar repository-path Oc Oo Fl x Ar commit Oc Op Ar path
673 38e11793 2018-06-13 stsp Display history of a repository.
674 04ca23f4 2018-07-16 stsp If a
675 04ca23f4 2018-07-16 stsp .Ar path
676 04ca23f4 2018-07-16 stsp is specified, show only commits which modified this path.
677 dc990cbf 2020-02-22 stsp If invoked in a work tree, the
678 dc990cbf 2020-02-22 stsp .Ar path
679 dc990cbf 2020-02-22 stsp is interpreted relative to the current working directory,
680 dc990cbf 2020-02-22 stsp and the work tree's path prefix is implicitly prepended.
681 dc990cbf 2020-02-22 stsp Otherwise, the path is interpreted relative to the repository root.
682 38e11793 2018-06-13 stsp .Pp
683 38e11793 2018-06-13 stsp The options for
684 38e11793 2018-06-13 stsp .Cm got log
685 38e11793 2018-06-13 stsp are as follows:
686 38e11793 2018-06-13 stsp .Bl -tag -width Ds
687 48c8c60d 2020-01-27 stsp .It Fl b
688 1137e0ae 2020-01-27 stsp Display individual commits which were merged into the current branch
689 1137e0ae 2020-01-27 stsp from other branches.
690 48c8c60d 2020-01-27 stsp By default,
691 48c8c60d 2020-01-27 stsp .Cm got log
692 48c8c60d 2020-01-27 stsp shows the linear history of the current branch only.
693 38e11793 2018-06-13 stsp .It Fl c Ar commit
694 38e11793 2018-06-13 stsp Start traversing history at the specified
695 38e11793 2018-06-13 stsp .Ar commit .
696 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
697 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
698 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
699 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
700 1cc14b9f 2019-05-14 stsp If this option is not specified, default to the work tree's current branch
701 1cc14b9f 2019-05-14 stsp if invoked in a work tree, or to the repository's HEAD reference.
702 c0cc5c62 2018-10-18 stsp .It Fl C Ar number
703 c0cc5c62 2018-10-18 stsp Set the number of context lines shown in diffs with
704 c0cc5c62 2018-10-18 stsp .Fl p .
705 c0cc5c62 2018-10-18 stsp By default, 3 lines of context are shown.
706 6238ee32 2018-06-13 stsp .It Fl l Ar N
707 6238ee32 2018-06-13 stsp Limit history traversal to a given number of commits.
708 b1ebc001 2019-08-13 stsp If this option is not specified, a default limit value of zero is used,
709 b1ebc001 2019-08-13 stsp which is treated as an unbounded limit.
710 b1ebc001 2019-08-13 stsp The
711 b1ebc001 2019-08-13 stsp .Ev GOT_LOG_DEFAULT_LIMIT
712 b1ebc001 2019-08-13 stsp environment variable may be set to change this default value.
713 6238ee32 2018-06-13 stsp .It Fl p
714 6238ee32 2018-06-13 stsp Display the patch of modifications made in each commit.
715 44392932 2019-08-25 stsp If a
716 44392932 2019-08-25 stsp .Ar path
717 44392932 2019-08-25 stsp is specified, only show the patch of modifications at or within this path.
718 c6390436 2019-11-29 kn .It Fl s Ar search-pattern
719 c6390436 2019-11-29 kn If specified, show only commits with a log message matched by the extended
720 6841bf13 2019-11-29 kn regular expression
721 6841bf13 2019-11-29 kn .Ar search-pattern .
722 6841bf13 2019-11-29 kn Regular expression syntax is documented in
723 6841bf13 2019-11-29 kn .Xr re_format 7 .
724 04ca23f4 2018-07-16 stsp .It Fl r Ar repository-path
725 04ca23f4 2018-07-16 stsp Use the repository at the specified path.
726 04ca23f4 2018-07-16 stsp If not specified, assume the repository is located at or above the current
727 04ca23f4 2018-07-16 stsp working directory.
728 e9cf2e30 2019-02-05 stsp If this directory is a
729 e9cf2e30 2019-02-05 stsp .Nm
730 e9cf2e30 2019-02-05 stsp work tree, use the repository path associated with this work tree.
731 d1fe46f9 2020-04-18 stsp .It Fl x Ar commit
732 d1fe46f9 2020-04-18 stsp Stop displaying commits as soon as the specified
733 d1fe46f9 2020-04-18 stsp .Ar commit
734 d1fe46f9 2020-04-18 stsp has been displayed.
735 d1fe46f9 2020-04-18 stsp This option has no effect if the specified
736 d1fe46f9 2020-04-18 stsp .Ar commit
737 d1fe46f9 2020-04-18 stsp is never traversed.
738 38e11793 2018-06-13 stsp .El
739 63035f9f 2019-10-06 stsp .It Cm diff Oo Fl C Ar number Oc Oo Fl r Ar repository-path Oc Oo Fl s Oc Oo Fl w Oc Op Ar object1 Ar object2 | Ar path
740 927df6b7 2019-02-10 stsp When invoked within a work tree with less than two arguments, display
741 927df6b7 2019-02-10 stsp uncommitted changes in the work tree.
742 927df6b7 2019-02-10 stsp If a
743 927df6b7 2019-02-10 stsp .Ar path
744 927df6b7 2019-02-10 stsp is specified, only show changes within this path.
745 927df6b7 2019-02-10 stsp .Pp
746 d24820bf 2019-08-11 stsp If two arguments are provided, treat each argument as a reference, a tag
747 d24820bf 2019-08-11 stsp name, or an object ID SHA1 hash, and display differences between the
748 d24820bf 2019-08-11 stsp corresponding objects.
749 3f8b7d6a 2018-04-01 stsp Both objects must be of the same type (blobs, trees, or commits).
750 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
751 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
752 c0cc5c62 2018-10-18 stsp .Pp
753 c0cc5c62 2018-10-18 stsp The options for
754 c0cc5c62 2018-10-18 stsp .Cm got diff
755 c0cc5c62 2018-10-18 stsp are as follows:
756 c0cc5c62 2018-10-18 stsp .Bl -tag -width Ds
757 c0cc5c62 2018-10-18 stsp .It Fl C Ar number
758 c0cc5c62 2018-10-18 stsp Set the number of context lines shown in the diff.
759 c0cc5c62 2018-10-18 stsp By default, 3 lines of context are shown.
760 b72f483a 2019-02-05 stsp .It Fl r Ar repository-path
761 b72f483a 2019-02-05 stsp Use the repository at the specified path.
762 b72f483a 2019-02-05 stsp If not specified, assume the repository is located at or above the current
763 b72f483a 2019-02-05 stsp working directory.
764 b72f483a 2019-02-05 stsp If this directory is a
765 b72f483a 2019-02-05 stsp .Nm
766 b72f483a 2019-02-05 stsp work tree, use the repository path associated with this work tree.
767 4ed9f614 2019-08-04 stsp .It Fl s
768 4ed9f614 2019-08-04 stsp Show changes staged with
769 4ed9f614 2019-08-04 stsp .Cm got stage
770 4ed9f614 2019-08-04 stsp instead of showing local changes.
771 4ed9f614 2019-08-04 stsp This option is only valid when
772 4ed9f614 2019-08-04 stsp .Cm got diff
773 4ed9f614 2019-08-04 stsp is invoked in a work tree.
774 63035f9f 2019-10-06 stsp .It Fl w
775 63035f9f 2019-10-06 stsp Ignore whitespace-only changes.
776 c0cc5c62 2018-10-18 stsp .El
777 bc26cce8 2019-08-04 stsp .It Cm di
778 bc26cce8 2019-08-04 stsp Short alias for
779 bc26cce8 2019-08-04 stsp .Cm diff .
780 dfc23429 2019-08-11 stsp .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
781 1ff8e573 2018-08-02 stsp Display line-by-line history of a file at the specified path.
782 1ff8e573 2018-08-02 stsp .Pp
783 1ff8e573 2018-08-02 stsp The options for
784 1ff8e573 2018-08-02 stsp .Cm got blame
785 1ff8e573 2018-08-02 stsp are as follows:
786 1ff8e573 2018-08-02 stsp .Bl -tag -width Ds
787 1ff8e573 2018-08-02 stsp .It Fl c Ar commit
788 1ff8e573 2018-08-02 stsp Start traversing history at the specified
789 1ff8e573 2018-08-02 stsp .Ar commit .
790 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
791 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
792 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
793 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
794 1ff8e573 2018-08-02 stsp .It Fl r Ar repository-path
795 1ff8e573 2018-08-02 stsp Use the repository at the specified path.
796 1ff8e573 2018-08-02 stsp If not specified, assume the repository is located at or above the current
797 1ff8e573 2018-08-02 stsp working directory.
798 0c06baac 2019-02-05 stsp If this directory is a
799 0c06baac 2019-02-05 stsp .Nm
800 0c06baac 2019-02-05 stsp work tree, use the repository path associated with this work tree.
801 5c860e29 2018-03-12 stsp .El
802 bc26cce8 2019-08-04 stsp .It Cm bl
803 bc26cce8 2019-08-04 stsp Short alias for
804 bc26cce8 2019-08-04 stsp .Cm blame .
805 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
806 5de5890b 2018-10-18 stsp Display a listing of files and directories at the specified
807 5de5890b 2018-10-18 stsp directory path in the repository.
808 db0c2996 2019-02-10 stsp Entries shown in this listing may carry one of the following trailing
809 db0c2996 2019-02-10 stsp annotations:
810 db0c2996 2019-02-10 stsp .Bl -column YXZ description
811 848d6979 2019-08-12 stsp .It @ Ta entry is a symbolic link
812 db0c2996 2019-02-10 stsp .It / Ta entry is a directory
813 db0c2996 2019-02-10 stsp .It * Ta entry is an executable file
814 63c5ca5d 2019-08-24 stsp .It $ Ta entry is a Git submodule
815 db0c2996 2019-02-10 stsp .El
816 db0c2996 2019-02-10 stsp .Pp
817 0c849583 2019-02-05 stsp If no
818 0c849583 2019-02-05 stsp .Ar path
819 0c849583 2019-02-05 stsp is specified, list the repository path corresponding to the current
820 0c849583 2019-02-05 stsp directory of the work tree, or the root directory of the repository
821 0c849583 2019-02-05 stsp if there is no work tree.
822 5de5890b 2018-10-18 stsp .Pp
823 5de5890b 2018-10-18 stsp The options for
824 5de5890b 2018-10-18 stsp .Cm got tree
825 5de5890b 2018-10-18 stsp are as follows:
826 5de5890b 2018-10-18 stsp .Bl -tag -width Ds
827 5de5890b 2018-10-18 stsp .It Fl c Ar commit
828 5de5890b 2018-10-18 stsp List files and directories as they appear in the specified
829 5de5890b 2018-10-18 stsp .Ar commit .
830 30837e32 2019-07-25 stsp The expected argument is a commit ID SHA1 hash or an existing reference
831 303e2782 2019-08-09 stsp or tag name which will be resolved to a commit ID.
832 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
833 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
834 5de5890b 2018-10-18 stsp .It Fl r Ar repository-path
835 5de5890b 2018-10-18 stsp Use the repository at the specified path.
836 5de5890b 2018-10-18 stsp If not specified, assume the repository is located at or above the current
837 5de5890b 2018-10-18 stsp working directory.
838 0c849583 2019-02-05 stsp If this directory is a
839 0c849583 2019-02-05 stsp .Nm
840 0c849583 2019-02-05 stsp work tree, use the repository path associated with this work tree.
841 5de5890b 2018-10-18 stsp .It Fl i
842 5de5890b 2018-10-18 stsp Show object IDs of files (blob objects) and directories (tree objects).
843 c1669e2e 2019-01-09 stsp .It Fl R
844 0c849583 2019-02-05 stsp Recurse into sub-directories in the repository.
845 d0eebce4 2019-03-11 stsp .El
846 bc26cce8 2019-08-04 stsp .It Cm tr
847 bc26cce8 2019-08-04 stsp Short alias for
848 bc26cce8 2019-08-04 stsp .Cm tree .
849 e31abbf2 2020-03-22 stsp .It Cm ref Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl c Ar object Oc Oo Fl s Ar reference Oc Oo Fl d Oc Op Ar name
850 d0eebce4 2019-03-11 stsp Manage references in a repository.
851 d0eebce4 2019-03-11 stsp .Pp
852 e31abbf2 2020-03-22 stsp References may be listed, created, deleted, and changed.
853 e31abbf2 2020-03-22 stsp When creating, deleting, or changing a reference the specified
854 e31abbf2 2020-03-22 stsp .Ar name
855 e31abbf2 2020-03-22 stsp must be an absolute reference name, i.e. it must begin with
856 f16e4044 2019-10-09 stsp .Dq refs/ .
857 e31abbf2 2020-03-22 stsp .Pp
858 d0eebce4 2019-03-11 stsp The options for
859 d0eebce4 2019-03-11 stsp .Cm got ref
860 d0eebce4 2019-03-11 stsp are as follows:
861 d0eebce4 2019-03-11 stsp .Bl -tag -width Ds
862 d0eebce4 2019-03-11 stsp .It Fl r Ar repository-path
863 d0eebce4 2019-03-11 stsp Use the repository at the specified path.
864 d0eebce4 2019-03-11 stsp If not specified, assume the repository is located at or above the current
865 d0eebce4 2019-03-11 stsp working directory.
866 d0eebce4 2019-03-11 stsp If this directory is a
867 d0eebce4 2019-03-11 stsp .Nm
868 d0eebce4 2019-03-11 stsp work tree, use the repository path associated with this work tree.
869 d0eebce4 2019-03-11 stsp .It Fl l
870 b2070a3f 2020-03-22 stsp List references in the repository.
871 b2070a3f 2020-03-22 stsp If no
872 b2070a3f 2020-03-22 stsp .Ar name
873 b2070a3f 2020-03-22 stsp is specified, list all existing references in the repository.
874 b2070a3f 2020-03-22 stsp If
875 b2070a3f 2020-03-22 stsp .Ar name
876 b2070a3f 2020-03-22 stsp is a reference namespace, list all references in this namespace.
877 b2070a3f 2020-03-22 stsp Otherwise, show only the reference with the given
878 b2070a3f 2020-03-22 stsp .Ar name .
879 e31abbf2 2020-03-22 stsp Cannot be used together with any other options except
880 e31abbf2 2020-03-22 stsp .Fl r .
881 e31abbf2 2020-03-22 stsp .It Fl c Ar object
882 e31abbf2 2020-03-22 stsp Create a reference or change an existing reference.
883 e31abbf2 2020-03-22 stsp The reference with the specified
884 e31abbf2 2020-03-22 stsp .Ar name
885 e31abbf2 2020-03-22 stsp will point at the specified
886 e31abbf2 2020-03-22 stsp .Ar object.
887 e31abbf2 2020-03-22 stsp The expected
888 e31abbf2 2020-03-22 stsp .Ar object
889 e31abbf2 2020-03-22 stsp argument is a ID SHA1 hash or an existing reference or tag name which will
890 e31abbf2 2020-03-22 stsp be resolved to the ID of a corresponding commit, tree, tag, or blob object.
891 e31abbf2 2020-03-22 stsp Cannot be used together with any other options except
892 e31abbf2 2020-03-22 stsp .Fl r .
893 e31abbf2 2020-03-22 stsp .It Fl s Ar reference
894 e31abbf2 2020-03-22 stsp Create a symbolic reference, or change an existing symbolic reference.
895 e31abbf2 2020-03-22 stsp The symbolic reference with the specified
896 e31abbf2 2020-03-22 stsp .Ar name
897 e31abbf2 2020-03-22 stsp will point at the specified
898 e31abbf2 2020-03-22 stsp .Ar reference
899 e31abbf2 2020-03-22 stsp which must already exist in the repository.
900 d1c1ae5f 2019-08-12 stsp Care should be taken not to create loops between references when
901 d1c1ae5f 2019-08-12 stsp this option is used.
902 e31abbf2 2020-03-22 stsp Cannot be used together with any other options except
903 e31abbf2 2020-03-22 stsp .Fl r .
904 e31abbf2 2020-03-22 stsp .It Fl d
905 e31abbf2 2020-03-22 stsp Delete the reference with the specified
906 e31abbf2 2020-03-22 stsp .Ar name
907 e31abbf2 2020-03-22 stsp from the repository.
908 e31abbf2 2020-03-22 stsp Cannot be used together with any other options except
909 e31abbf2 2020-03-22 stsp .Fl r .
910 4e759de4 2019-06-26 stsp .El
911 da76fce2 2020-02-24 stsp .It Cm branch Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl n Oc Op Ar name
912 da76fce2 2020-02-24 stsp Create, list, or delete branches.
913 4e759de4 2019-06-26 stsp .Pp
914 4e759de4 2019-06-26 stsp Branches are managed via references which live in the
915 4e759de4 2019-06-26 stsp .Dq refs/heads/
916 4e759de4 2019-06-26 stsp reference namespace.
917 4e759de4 2019-06-26 stsp The
918 4e759de4 2019-06-26 stsp .Cm got branch
919 4e759de4 2019-06-26 stsp command operates on references in this namespace only.
920 4e759de4 2019-06-26 stsp .Pp
921 ad89fa31 2019-10-04 stsp If invoked in a work tree without any arguments, print the name of the
922 ad89fa31 2019-10-04 stsp work tree's current branch.
923 da76fce2 2020-02-24 stsp .Pp
924 a74f7e83 2019-11-10 stsp If a
925 a74f7e83 2019-11-10 stsp .Ar name
926 a74f7e83 2019-11-10 stsp argument is passed, attempt to create a branch reference with the given name.
927 a74f7e83 2019-11-10 stsp By default the new branch reference will point at the latest commit on the
928 a74f7e83 2019-11-10 stsp work tree's current branch if invoked in a work tree, and otherwise to a commit
929 a74f7e83 2019-11-10 stsp resolved via the repository's HEAD reference.
930 4e759de4 2019-06-26 stsp .Pp
931 da76fce2 2020-02-24 stsp If invoked in a work tree, once the branch was created successfully
932 da76fce2 2020-02-24 stsp switch the work tree's head reference to the newly created branch and
933 da76fce2 2020-02-24 stsp update files across the entire work tree, just like
934 da76fce2 2020-02-24 stsp .Cm got update -b Ar name
935 da76fce2 2020-02-24 stsp would do.
936 da76fce2 2020-02-24 stsp Show the status of each affected file, using the following status codes:
937 da76fce2 2020-02-24 stsp .Bl -column YXZ description
938 da76fce2 2020-02-24 stsp .It U Ta file was updated and contained no local changes
939 da76fce2 2020-02-24 stsp .It G Ta file was updated and local changes were merged cleanly
940 da76fce2 2020-02-24 stsp .It C Ta file was updated and conflicts occurred during merge
941 da76fce2 2020-02-24 stsp .It D Ta file was deleted
942 da76fce2 2020-02-24 stsp .It A Ta new file was added
943 da76fce2 2020-02-24 stsp .It \(a~ Ta versioned file is obstructed by a non-regular file
944 da76fce2 2020-02-24 stsp .It ! Ta a missing versioned file was restored
945 da76fce2 2020-02-24 stsp .El
946 da76fce2 2020-02-24 stsp .Pp
947 4e759de4 2019-06-26 stsp The options for
948 4e759de4 2019-06-26 stsp .Cm got branch
949 4e759de4 2019-06-26 stsp are as follows:
950 4e759de4 2019-06-26 stsp .Bl -tag -width Ds
951 a74f7e83 2019-11-10 stsp .It Fl c Ar commit
952 a74f7e83 2019-11-10 stsp Make a newly created branch reference point at the specified
953 a74f7e83 2019-11-10 stsp .Ar commit .
954 a74f7e83 2019-11-10 stsp The expected
955 a74f7e83 2019-11-10 stsp .Ar commit
956 a74f7e83 2019-11-10 stsp argument is a commit ID SHA1 hash or an existing reference
957 a74f7e83 2019-11-10 stsp or tag name which will be resolved to a commit ID.
958 4e759de4 2019-06-26 stsp .It Fl r Ar repository-path
959 4e759de4 2019-06-26 stsp Use the repository at the specified path.
960 4e759de4 2019-06-26 stsp If not specified, assume the repository is located at or above the current
961 4e759de4 2019-06-26 stsp working directory.
962 4e759de4 2019-06-26 stsp If this directory is a
963 4e759de4 2019-06-26 stsp .Nm
964 4e759de4 2019-06-26 stsp work tree, use the repository path associated with this work tree.
965 4e759de4 2019-06-26 stsp .It Fl l
966 4e759de4 2019-06-26 stsp List all existing branches in the repository.
967 ba882ee3 2019-07-11 stsp If invoked in a work tree, the work tree's current branch is shown
968 ba882ee3 2019-07-11 stsp with one the following annotations:
969 ba882ee3 2019-07-11 stsp .Bl -column YXZ description
970 ba882ee3 2019-07-11 stsp .It * Ta work tree's base commit matches the branch tip
971 1dd86744 2019-08-12 anthony .It \(a~ Ta work tree's base commit is out-of-date
972 ba882ee3 2019-07-11 stsp .El
973 4e759de4 2019-06-26 stsp .It Fl d Ar name
974 4e759de4 2019-06-26 stsp Delete the branch with the specified name from the repository.
975 7acfb25b 2019-07-11 stsp Only the branch reference is deleted.
976 7acfb25b 2019-07-11 stsp Any commit, tree, and blob objects belonging to the branch
977 74d012d1 2019-07-11 stsp remain in the repository and may be removed separately with
978 ce33d90e 2019-07-14 stsp Git's garbage collector.
979 da76fce2 2020-02-24 stsp .It Fl n
980 da76fce2 2020-02-24 stsp Do not switch and update the work tree after creating a new branch.
981 5de5890b 2018-10-18 stsp .El
982 97b3a7be 2019-07-09 stsp .It Cm br
983 97b3a7be 2019-07-09 stsp Short alias for
984 97b3a7be 2019-07-09 stsp .Cm branch .
985 80106605 2020-02-24 stsp .It Cm tag Oo Fl c Ar commit Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Ar name
986 8e7bd50a 2019-08-22 stsp Manage tags in a repository.
987 8e7bd50a 2019-08-22 stsp .Pp
988 8e7bd50a 2019-08-22 stsp Tags are managed via references which live in the
989 8e7bd50a 2019-08-22 stsp .Dq refs/tags/
990 8e7bd50a 2019-08-22 stsp reference namespace.
991 8e7bd50a 2019-08-22 stsp The
992 8e7bd50a 2019-08-22 stsp .Cm got tag
993 8e7bd50a 2019-08-22 stsp command operates on references in this namespace only.
994 b3cd068e 2019-08-22 stsp References in this namespace point at tag objects which contain a pointer
995 b3cd068e 2019-08-22 stsp to another object, a tag message, as well as author and timestamp information.
996 8e7bd50a 2019-08-22 stsp .Pp
997 80106605 2020-02-24 stsp Attempt to create a tag with the given
998 8e7bd50a 2019-08-22 stsp .Ar name ,
999 8e7bd50a 2019-08-22 stsp and make this tag point at the given
1000 8e7bd50a 2019-08-22 stsp .Ar commit .
1001 8e7bd50a 2019-08-22 stsp If no commit is specified, default to the latest commit on the work tree's
1002 8e7bd50a 2019-08-22 stsp current branch if invoked in a work tree, and to a commit resolved via
1003 8e7bd50a 2019-08-22 stsp the repository's HEAD reference otherwise.
1004 8e7bd50a 2019-08-22 stsp .Pp
1005 8e7bd50a 2019-08-22 stsp The options for
1006 8e7bd50a 2019-08-22 stsp .Cm got tag
1007 8e7bd50a 2019-08-22 stsp are as follows:
1008 8e7bd50a 2019-08-22 stsp .Bl -tag -width Ds
1009 80106605 2020-02-24 stsp .It Fl c Ar commit
1010 80106605 2020-02-24 stsp Make the newly created tag reference point at the specified
1011 80106605 2020-02-24 stsp .Ar commit .
1012 80106605 2020-02-24 stsp The expected
1013 80106605 2020-02-24 stsp .Ar commit
1014 80106605 2020-02-24 stsp argument is a commit ID SHA1 hash or an existing reference or tag name which
1015 80106605 2020-02-24 stsp will be resolved to a commit ID.
1016 80106605 2020-02-24 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
1017 80106605 2020-02-24 stsp automatically, provided the abbreviation is unique.
1018 8e7bd50a 2019-08-22 stsp .It Fl m Ar message
1019 80106605 2020-02-24 stsp Use the specified tag message when creating the new tag.
1020 8e7bd50a 2019-08-22 stsp Without the
1021 8e7bd50a 2019-08-22 stsp .Fl m
1022 8e7bd50a 2019-08-22 stsp option,
1023 3a62228f 2019-11-08 stsp .Cm got tag
1024 8e7bd50a 2019-08-22 stsp opens a temporary file in an editor where a tag message can be written.
1025 8e7bd50a 2019-08-22 stsp .It Fl r Ar repository-path
1026 8e7bd50a 2019-08-22 stsp Use the repository at the specified path.
1027 8e7bd50a 2019-08-22 stsp If not specified, assume the repository is located at or above the current
1028 8e7bd50a 2019-08-22 stsp working directory.
1029 8e7bd50a 2019-08-22 stsp If this directory is a
1030 8e7bd50a 2019-08-22 stsp .Nm
1031 8e7bd50a 2019-08-22 stsp work tree, use the repository path associated with this work tree.
1032 8e7bd50a 2019-08-22 stsp .It Fl l
1033 8e7bd50a 2019-08-22 stsp List all existing tags in the repository instead of creating a new tag.
1034 8e7bd50a 2019-08-22 stsp If this option is used, no other command-line arguments are allowed.
1035 8e7bd50a 2019-08-22 stsp .El
1036 8e7bd50a 2019-08-22 stsp .Pp
1037 8e7bd50a 2019-08-22 stsp By design, the
1038 8e7bd50a 2019-08-22 stsp .Cm got tag
1039 8e7bd50a 2019-08-22 stsp command will not delete tags or change existing tags.
1040 8e7bd50a 2019-08-22 stsp If a tag must be deleted, the
1041 8e7bd50a 2019-08-22 stsp .Cm got ref
1042 8e7bd50a 2019-08-22 stsp command may be used to delete a tag's reference.
1043 8e7bd50a 2019-08-22 stsp This should only be done if the tag has not already been copied to
1044 8e7bd50a 2019-08-22 stsp another repository.
1045 022fae89 2019-12-06 tracey .It Cm add Oo Fl R Oc Oo Fl I Oc Ar path ...
1046 8125ddca 2019-05-11 stsp Schedule unversioned files in a work tree for addition to the
1047 d00136be 2019-03-26 stsp repository in the next commit.
1048 4e68cba3 2019-11-23 stsp .Pp
1049 4e68cba3 2019-11-23 stsp The options for
1050 4e68cba3 2019-11-23 stsp .Cm got add
1051 4e68cba3 2019-11-23 stsp are as follows:
1052 4e68cba3 2019-11-23 stsp .Bl -tag -width Ds
1053 4e68cba3 2019-11-23 stsp .It Fl R
1054 4e68cba3 2019-11-23 stsp Permit recursion into directories.
1055 4e68cba3 2019-11-23 stsp If this option is not specified,
1056 4e68cba3 2019-11-23 stsp .Cm got add
1057 4e68cba3 2019-11-23 stsp will refuse to run if a specified
1058 4e68cba3 2019-11-23 stsp .Ar path
1059 4e68cba3 2019-11-23 stsp is a directory.
1060 022fae89 2019-12-06 tracey .It Fl I
1061 022fae89 2019-12-06 tracey With -R, add files even if they match a
1062 022fae89 2019-12-06 tracey .Cm got status
1063 022fae89 2019-12-06 tracey ignore pattern.
1064 4e68cba3 2019-11-23 stsp .El
1065 c29c428a 2019-12-16 stsp .It Cm remove Oo Fl f Oc Oo Fl k Oc Oo Fl R Oc Ar path ...
1066 17ed4618 2019-06-02 stsp Remove versioned files from a work tree and schedule them for deletion
1067 2ec1f75b 2019-03-26 stsp from the repository in the next commit.
1068 2ec1f75b 2019-03-26 stsp .Pp
1069 2ec1f75b 2019-03-26 stsp The options for
1070 86d25a1b 2019-07-11 stsp .Cm got remove
1071 2ec1f75b 2019-03-26 stsp are as follows:
1072 2ec1f75b 2019-03-26 stsp .Bl -tag -width Ds
1073 2ec1f75b 2019-03-26 stsp .It Fl f
1074 17ed4618 2019-06-02 stsp Perform the operation even if a file contains uncommitted modifications.
1075 70e3e7f5 2019-12-13 tracey .It Fl k
1076 70e3e7f5 2019-12-13 tracey Keep affected files on disk.
1077 f2a9dc41 2019-12-13 tracey .It Fl R
1078 f2a9dc41 2019-12-13 tracey Permit recursion into directories.
1079 f2a9dc41 2019-12-13 tracey If this option is not specified,
1080 f2a9dc41 2019-12-13 tracey .Cm got remove
1081 f2a9dc41 2019-12-13 tracey will refuse to run if a specified
1082 f2a9dc41 2019-12-13 tracey .Ar path
1083 f2a9dc41 2019-12-13 tracey is a directory.
1084 d0eebce4 2019-03-11 stsp .El
1085 648e4ef7 2019-07-09 stsp .It Cm rm
1086 648e4ef7 2019-07-09 stsp Short alias for
1087 648e4ef7 2019-07-09 stsp .Cm remove .
1088 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 ...
1089 bc3056e3 2019-08-18 stsp Revert any uncommitted changes in files at the specified paths.
1090 a129376b 2019-03-28 stsp File contents will be overwritten with those contained in the
1091 1dd86744 2019-08-12 anthony work tree's base commit.
1092 1dd86744 2019-08-12 anthony There is no way to bring discarded changes back after
1093 a129376b 2019-03-28 stsp .Cm got revert !
1094 a129376b 2019-03-28 stsp .Pp
1095 e20a8b6f 2019-06-04 stsp If a file was added with
1096 a129376b 2019-03-28 stsp .Cm got add
1097 a129376b 2019-03-28 stsp it will become an unversioned file again.
1098 e20a8b6f 2019-06-04 stsp If a file was deleted with
1099 86d25a1b 2019-07-11 stsp .Cm got remove
1100 a129376b 2019-03-28 stsp it will be restored.
1101 0f6d7415 2019-08-08 stsp .Pp
1102 0f6d7415 2019-08-08 stsp The options for
1103 0f6d7415 2019-08-08 stsp .Cm got revert
1104 0f6d7415 2019-08-08 stsp are as follows:
1105 0f6d7415 2019-08-08 stsp .Bl -tag -width Ds
1106 33aa809d 2019-08-08 stsp .It Fl p
1107 33aa809d 2019-08-08 stsp Instead of reverting all changes in files, interactively select or reject
1108 33aa809d 2019-08-08 stsp changes to revert based on
1109 33aa809d 2019-08-08 stsp .Dq y
1110 33aa809d 2019-08-08 stsp (revert change),
1111 33aa809d 2019-08-08 stsp .Dq n
1112 33aa809d 2019-08-08 stsp (keep change), and
1113 33aa809d 2019-08-08 stsp .Dq q
1114 33aa809d 2019-08-08 stsp (quit reverting this file) responses.
1115 33aa809d 2019-08-08 stsp If a file is in modified status, individual patches derived from the
1116 33aa809d 2019-08-08 stsp modified file content can be reverted.
1117 33aa809d 2019-08-08 stsp Files in added or deleted status may only be reverted in their entirety.
1118 33aa809d 2019-08-08 stsp .It Fl F Ar response-script
1119 33aa809d 2019-08-08 stsp With the
1120 33aa809d 2019-08-08 stsp .Fl p
1121 33aa809d 2019-08-08 stsp option, read
1122 33aa809d 2019-08-08 stsp .Dq y ,
1123 33aa809d 2019-08-08 stsp .Dq n ,
1124 33aa809d 2019-08-08 stsp and
1125 33aa809d 2019-08-08 stsp .Dq q
1126 33aa809d 2019-08-08 stsp responses line-by-line from the specified
1127 33aa809d 2019-08-08 stsp .Ar response-script
1128 33aa809d 2019-08-08 stsp file instead of prompting interactively.
1129 0f6d7415 2019-08-08 stsp .It Fl R
1130 0f6d7415 2019-08-08 stsp Permit recursion into directories.
1131 0f6d7415 2019-08-08 stsp If this option is not specified,
1132 0f6d7415 2019-08-08 stsp .Cm got revert
1133 0f6d7415 2019-08-08 stsp will refuse to run if a specified
1134 0f6d7415 2019-08-08 stsp .Ar path
1135 0f6d7415 2019-08-08 stsp is a directory.
1136 0f6d7415 2019-08-08 stsp .El
1137 97b3a7be 2019-07-09 stsp .It Cm rv
1138 97b3a7be 2019-07-09 stsp Short alias for
1139 97b3a7be 2019-07-09 stsp .Cm revert .
1140 dfc23429 2019-08-11 stsp .It Cm commit Oo Fl m Ar message Oc Op Ar path ...
1141 4ed9f614 2019-08-04 stsp Create a new commit in the repository from changes in a work tree
1142 15cd91f7 2019-05-12 stsp and use this commit as the new base commit for the work tree.
1143 5c1e53bc 2019-07-28 stsp If no
1144 90e8619e 2019-07-25 stsp .Ar path
1145 4ed9f614 2019-08-04 stsp is specified, commit all changes in the work tree.
1146 4ed9f614 2019-08-04 stsp Otherwise, commit changes at or within the specified paths.
1147 15cd91f7 2019-05-12 stsp .Pp
1148 4ed9f614 2019-08-04 stsp If changes have been explicitly staged for commit with
1149 1dd86744 2019-08-12 anthony .Cm got stage ,
1150 4ed9f614 2019-08-04 stsp only commit staged changes and reject any specified paths which
1151 4ed9f614 2019-08-04 stsp have not been staged.
1152 4ed9f614 2019-08-04 stsp .Pp
1153 15cd91f7 2019-05-12 stsp Show the status of each affected file, using the following status codes:
1154 15cd91f7 2019-05-12 stsp .Bl -column YXZ description
1155 15cd91f7 2019-05-12 stsp .It M Ta modified file
1156 15cd91f7 2019-05-12 stsp .It D Ta file was deleted
1157 15cd91f7 2019-05-12 stsp .It A Ta new file was added
1158 1ebedb77 2019-10-19 stsp .It m Ta modified file modes (executable bit only)
1159 15cd91f7 2019-05-12 stsp .El
1160 15cd91f7 2019-05-12 stsp .Pp
1161 996d5ccd 2019-08-05 stsp Files which are not part of the new commit will retain their previously
1162 996d5ccd 2019-08-05 stsp recorded base commit.
1163 15cd91f7 2019-05-12 stsp Some
1164 15cd91f7 2019-05-12 stsp .Nm
1165 15cd91f7 2019-05-12 stsp commands may refuse to run while the work tree contains files from
1166 15cd91f7 2019-05-12 stsp multiple base commits.
1167 15cd91f7 2019-05-12 stsp The base commit of such a work tree can be made consistent by running
1168 47ec7be7 2019-05-12 stsp .Cm got update
1169 47ec7be7 2019-05-12 stsp across the entire work tree.
1170 15cd91f7 2019-05-12 stsp .Pp
1171 15cd91f7 2019-05-12 stsp The
1172 15cd91f7 2019-05-12 stsp .Cm got commit
1173 15cd91f7 2019-05-12 stsp command requires the
1174 74416c47 2019-05-09 stsp .Ev GOT_AUTHOR
1175 aba9c984 2019-09-08 stsp environment variable to be set,
1176 aba9c984 2019-09-08 stsp unless Git's
1177 aba9c984 2019-09-08 stsp .Dv user.name
1178 aba9c984 2019-09-08 stsp and
1179 709ae9eb 2019-09-08 stsp .Dv user.email
1180 709ae9eb 2019-09-08 stsp configuration settings can be
1181 aba9c984 2019-09-08 stsp obtained from the repository's
1182 aba9c984 2019-09-08 stsp .Pa .git/config
1183 c9956ddf 2019-09-08 stsp file or from Git's global
1184 c9956ddf 2019-09-08 stsp .Pa ~/.gitconfig
1185 c9956ddf 2019-09-08 stsp configuration file.
1186 74416c47 2019-05-09 stsp .Pp
1187 74416c47 2019-05-09 stsp The options for
1188 74416c47 2019-05-09 stsp .Cm got commit
1189 74416c47 2019-05-09 stsp are as follows:
1190 74416c47 2019-05-09 stsp .Bl -tag -width Ds
1191 74ff3f23 2019-07-07 stsp .It Fl m Ar message
1192 74416c47 2019-05-09 stsp Use the specified log message when creating the new commit.
1193 23594da9 2019-05-13 stsp Without the
1194 23594da9 2019-05-13 stsp .Fl m
1195 23594da9 2019-05-13 stsp option,
1196 23594da9 2019-05-13 stsp .Cm got commit
1197 23594da9 2019-05-13 stsp opens a temporary file in an editor where a log message can be written.
1198 2ec1f75b 2019-03-26 stsp .El
1199 cfce0458 2019-07-28 stsp .Pp
1200 cfce0458 2019-07-28 stsp .Cm got commit
1201 cfce0458 2019-07-28 stsp will refuse to run if certain preconditions are not met.
1202 916f288c 2019-07-30 stsp If the work tree's current branch is not in the
1203 916f288c 2019-07-30 stsp .Dq refs/heads/
1204 916f288c 2019-07-30 stsp reference namespace, new commits may not be created on this branch.
1205 cfce0458 2019-07-28 stsp Local changes may only be committed if they are based on file content
1206 cfce0458 2019-07-28 stsp found in the most recent commit on the work tree's branch.
1207 cfce0458 2019-07-28 stsp If a path is found to be out of date,
1208 cfce0458 2019-07-28 stsp .Cm got update
1209 cfce0458 2019-07-28 stsp must be used first in order to merge local changes with changes made
1210 cfce0458 2019-07-28 stsp in the repository.
1211 97b3a7be 2019-07-09 stsp .It Cm ci
1212 97b3a7be 2019-07-09 stsp Short alias for
1213 97b3a7be 2019-07-09 stsp .Cm commit .
1214 234035bc 2019-06-01 stsp .It Cm cherrypick Ar commit
1215 234035bc 2019-06-01 stsp Merge changes from a single
1216 234035bc 2019-06-01 stsp .Ar commit
1217 234035bc 2019-06-01 stsp into the work tree.
1218 234035bc 2019-06-01 stsp The specified
1219 234035bc 2019-06-01 stsp .Ar commit
1220 234035bc 2019-06-01 stsp must be on a different branch than the work tree's base commit.
1221 a54b6686 2019-06-28 stsp The expected argument is a reference or a commit ID SHA1 hash.
1222 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
1223 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
1224 234035bc 2019-06-01 stsp .Pp
1225 234035bc 2019-06-01 stsp Show the status of each affected file, using the following status codes:
1226 234035bc 2019-06-01 stsp .Bl -column YXZ description
1227 234035bc 2019-06-01 stsp .It G Ta file was merged
1228 234035bc 2019-06-01 stsp .It C Ta file was merged and conflicts occurred during merge
1229 234035bc 2019-06-01 stsp .It ! Ta changes destined for a missing file were not merged
1230 234035bc 2019-06-01 stsp .It D Ta file was deleted
1231 2b92fad7 2019-06-02 stsp .It d Ta file's deletion was obstructed by local modifications
1232 234035bc 2019-06-01 stsp .It A Ta new file was added
1233 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1234 74416c47 2019-05-09 stsp .El
1235 234035bc 2019-06-01 stsp .Pp
1236 234035bc 2019-06-01 stsp The merged changes will appear as local changes in the work tree, which
1237 234035bc 2019-06-01 stsp may be viewed with
1238 234035bc 2019-06-01 stsp .Cm got diff ,
1239 234035bc 2019-06-01 stsp amended manually or with further
1240 234035bc 2019-06-01 stsp .Cm got cherrypick
1241 bc3056e3 2019-08-18 stsp commands,
1242 234035bc 2019-06-01 stsp committed with
1243 234035bc 2019-06-01 stsp .Cm got commit ,
1244 234035bc 2019-06-01 stsp or discarded again with
1245 234035bc 2019-06-01 stsp .Cm got revert .
1246 234035bc 2019-06-01 stsp .Pp
1247 234035bc 2019-06-01 stsp .Cm got cherrypick
1248 234035bc 2019-06-01 stsp will refuse to run if certain preconditions are not met.
1249 234035bc 2019-06-01 stsp If the work tree contains multiple base commits it must first be updated
1250 234035bc 2019-06-01 stsp to a single base commit with
1251 234035bc 2019-06-01 stsp .Cm got update .
1252 234035bc 2019-06-01 stsp If the work tree already contains files with merge conflicts, these
1253 234035bc 2019-06-01 stsp conflicts must be resolved first.
1254 016477fd 2019-07-09 stsp .It Cm cy
1255 97b3a7be 2019-07-09 stsp Short alias for
1256 97b3a7be 2019-07-09 stsp .Cm cherrypick .
1257 5ef14e63 2019-06-02 stsp .It Cm backout Ar commit
1258 5ef14e63 2019-06-02 stsp Reverse-merge changes from a single
1259 5ef14e63 2019-06-02 stsp .Ar commit
1260 5ef14e63 2019-06-02 stsp into the work tree.
1261 5ef14e63 2019-06-02 stsp The specified
1262 5ef14e63 2019-06-02 stsp .Ar commit
1263 5ef14e63 2019-06-02 stsp must be on the same branch as the work tree's base commit.
1264 a54b6686 2019-06-28 stsp The expected argument is a reference or a commit ID SHA1 hash.
1265 0db75f06 2019-07-07 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
1266 0db75f06 2019-07-07 stsp automatically, provided the abbreviation is unique.
1267 5ef14e63 2019-06-02 stsp .Pp
1268 5ef14e63 2019-06-02 stsp Show the status of each affected file, using the following status codes:
1269 5ef14e63 2019-06-02 stsp .Bl -column YXZ description
1270 5ef14e63 2019-06-02 stsp .It G Ta file was merged
1271 5ef14e63 2019-06-02 stsp .It C Ta file was merged and conflicts occurred during merge
1272 5ef14e63 2019-06-02 stsp .It ! Ta changes destined for a missing file were not merged
1273 5ef14e63 2019-06-02 stsp .It D Ta file was deleted
1274 5ef14e63 2019-06-02 stsp .It d Ta file's deletion was obstructed by local modifications
1275 5ef14e63 2019-06-02 stsp .It A Ta new file was added
1276 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1277 234035bc 2019-06-01 stsp .El
1278 5ef14e63 2019-06-02 stsp .Pp
1279 5ef14e63 2019-06-02 stsp The reverse-merged changes will appear as local changes in the work tree,
1280 5ef14e63 2019-06-02 stsp which may be viewed with
1281 5ef14e63 2019-06-02 stsp .Cm got diff ,
1282 5ef14e63 2019-06-02 stsp amended manually or with further
1283 778a73c2 2019-07-12 stsp .Cm got backout
1284 bc3056e3 2019-08-18 stsp commands,
1285 5ef14e63 2019-06-02 stsp committed with
1286 5ef14e63 2019-06-02 stsp .Cm got commit ,
1287 5ef14e63 2019-06-02 stsp or discarded again with
1288 5ef14e63 2019-06-02 stsp .Cm got revert .
1289 5ef14e63 2019-06-02 stsp .Pp
1290 92228c38 2019-06-02 stsp .Cm got backout
1291 92228c38 2019-06-02 stsp will refuse to run if certain preconditions are not met.
1292 92228c38 2019-06-02 stsp If the work tree contains multiple base commits it must first be updated
1293 92228c38 2019-06-02 stsp to a single base commit with
1294 92228c38 2019-06-02 stsp .Cm got update .
1295 92228c38 2019-06-02 stsp If the work tree already contains files with merge conflicts, these
1296 92228c38 2019-06-02 stsp conflicts must be resolved first.
1297 97b3a7be 2019-07-09 stsp .It Cm bo
1298 97b3a7be 2019-07-09 stsp Short alias for
1299 97b3a7be 2019-07-09 stsp .Cm backout .
1300 dfc23429 2019-08-11 stsp .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
1301 818c7501 2019-07-11 stsp Rebase commits on the specified
1302 818c7501 2019-07-11 stsp .Ar branch
1303 818c7501 2019-07-11 stsp onto the tip of the current branch of the work tree.
1304 818c7501 2019-07-11 stsp The
1305 818c7501 2019-07-11 stsp .Ar branch
1306 818c7501 2019-07-11 stsp must share common ancestry with the work tree's current branch.
1307 bc3056e3 2019-08-18 stsp Rebasing begins with the first descendant commit of the youngest
1308 f09e2405 2019-07-11 stsp common ancestor commit shared by the specified
1309 818c7501 2019-07-11 stsp .Ar branch
1310 818c7501 2019-07-11 stsp and the work tree's current branch, and stops once the tip commit
1311 f09e2405 2019-07-11 stsp of the specified
1312 818c7501 2019-07-11 stsp .Ar branch
1313 f09e2405 2019-07-11 stsp has been rebased.
1314 818c7501 2019-07-11 stsp .Pp
1315 2b6826ba 2020-02-24 stsp When
1316 2b6826ba 2020-02-24 stsp .Cm got rebase
1317 2b6826ba 2020-02-24 stsp is used as intended, the specified
1318 2b6826ba 2020-02-24 stsp .Ar branch
1319 c10890ce 2020-02-25 stsp represents a local commit history and may already contain changes
1320 c10890ce 2020-02-25 stsp that are not yet visible in any other repositories.
1321 2b6826ba 2020-02-24 stsp The work tree's current branch, which must be set with
1322 2b6826ba 2020-02-24 stsp .Cm got update -b
1323 2b6826ba 2020-02-24 stsp before starting the
1324 2b6826ba 2020-02-24 stsp .Cm rebase
1325 2b6826ba 2020-02-24 stsp operation, represents a branch from a remote repository which shares
1326 2b6826ba 2020-02-24 stsp a common history with the specified
1327 2b6826ba 2020-02-24 stsp .Ar branch
1328 c10890ce 2020-02-25 stsp but has progressed, and perhaps diverged, due to commits added to the
1329 c10890ce 2020-02-25 stsp remote repository.
1330 2b6826ba 2020-02-24 stsp .Pp
1331 c6b4581b 2019-07-28 stsp Rebased commits are accumulated on a temporary branch which the work tree
1332 c6b4581b 2019-07-28 stsp will remain switched to throughout the entire rebase operation.
1333 c6b4581b 2019-07-28 stsp Commits on this branch represent the same changes with the same log
1334 c6b4581b 2019-07-28 stsp messages as their counterparts on the original
1335 818c7501 2019-07-11 stsp .Ar branch ,
1336 818c7501 2019-07-11 stsp but with different commit IDs.
1337 818c7501 2019-07-11 stsp Once rebasing has completed successfully, the temporary branch becomes
1338 f09e2405 2019-07-11 stsp the new version of the specified
1339 818c7501 2019-07-11 stsp .Ar branch
1340 818c7501 2019-07-11 stsp and the work tree is automatically switched to it.
1341 818c7501 2019-07-11 stsp .Pp
1342 818c7501 2019-07-11 stsp While rebasing commits, show the status of each affected file,
1343 818c7501 2019-07-11 stsp using the following status codes:
1344 818c7501 2019-07-11 stsp .Bl -column YXZ description
1345 818c7501 2019-07-11 stsp .It G Ta file was merged
1346 818c7501 2019-07-11 stsp .It C Ta file was merged and conflicts occurred during merge
1347 818c7501 2019-07-11 stsp .It ! Ta changes destined for a missing file were not merged
1348 818c7501 2019-07-11 stsp .It D Ta file was deleted
1349 818c7501 2019-07-11 stsp .It d Ta file's deletion was obstructed by local modifications
1350 818c7501 2019-07-11 stsp .It A Ta new file was added
1351 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1352 5ef14e63 2019-06-02 stsp .El
1353 818c7501 2019-07-11 stsp .Pp
1354 f09e2405 2019-07-11 stsp If merge conflicts occur the rebase operation is interrupted and may
1355 f09e2405 2019-07-11 stsp be continued once conflicts have been resolved.
1356 818c7501 2019-07-11 stsp Alternatively, the rebase operation may be aborted which will leave
1357 818c7501 2019-07-11 stsp .Ar branch
1358 818c7501 2019-07-11 stsp unmodified and the work tree switched back to its original branch.
1359 818c7501 2019-07-11 stsp .Pp
1360 ff0d2220 2019-07-11 stsp If a merge conflict is resolved in a way which renders the merged
1361 f09e2405 2019-07-11 stsp change into a no-op change, the corresponding commit will be elided
1362 f09e2405 2019-07-11 stsp when the rebase operation continues.
1363 ff0d2220 2019-07-11 stsp .Pp
1364 818c7501 2019-07-11 stsp .Cm got rebase
1365 818c7501 2019-07-11 stsp will refuse to run if certain preconditions are not met.
1366 a85446b2 2020-01-04 stsp If the work tree is not yet fully updated to the tip commit of its
1367 a85446b2 2020-01-04 stsp branch then the work tree must first be updated with
1368 818c7501 2019-07-11 stsp .Cm got update .
1369 4ed9f614 2019-08-04 stsp If changes have been staged with
1370 4ed9f614 2019-08-04 stsp .Cm got stage ,
1371 bc3056e3 2019-08-18 stsp these changes must first be committed with
1372 4ed9f614 2019-08-04 stsp .Cm got commit
1373 4ed9f614 2019-08-04 stsp or unstaged with
1374 4ed9f614 2019-08-04 stsp .Cm got unstage .
1375 f09e2405 2019-07-11 stsp If the work tree contains local changes, these changes must first be
1376 f09e2405 2019-07-11 stsp committed with
1377 f09e2405 2019-07-11 stsp .Cm got commit
1378 f09e2405 2019-07-11 stsp or reverted with
1379 f09e2405 2019-07-11 stsp .Cm got revert .
1380 64c6d990 2019-07-11 stsp If the
1381 64c6d990 2019-07-11 stsp .Ar branch
1382 64c6d990 2019-07-11 stsp contains changes to files outside of the work tree's path prefix,
1383 64c6d990 2019-07-11 stsp the work tree cannot be used to rebase this branch.
1384 818c7501 2019-07-11 stsp .Pp
1385 7d5807f4 2019-07-11 stsp The
1386 7d5807f4 2019-07-11 stsp .Cm got update
1387 7d5807f4 2019-07-11 stsp and
1388 7d5807f4 2019-07-11 stsp .Cm got commit
1389 7d5807f4 2019-07-11 stsp commands will refuse to run while a rebase operation is in progress.
1390 7d5807f4 2019-07-11 stsp Other commands which manipulate the work tree may be used for
1391 7d5807f4 2019-07-11 stsp conflict resolution purposes.
1392 818c7501 2019-07-11 stsp .Pp
1393 818c7501 2019-07-11 stsp The options for
1394 818c7501 2019-07-11 stsp .Cm got rebase
1395 818c7501 2019-07-11 stsp are as follows:
1396 818c7501 2019-07-11 stsp .Bl -tag -width Ds
1397 818c7501 2019-07-11 stsp .It Fl a
1398 818c7501 2019-07-11 stsp Abort an interrupted rebase operation.
1399 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
1400 818c7501 2019-07-11 stsp .It Fl c
1401 06067b48 2019-07-11 stsp Continue an interrupted rebase operation.
1402 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
1403 818c7501 2019-07-11 stsp .El
1404 818c7501 2019-07-11 stsp .It Cm rb
1405 818c7501 2019-07-11 stsp Short alias for
1406 818c7501 2019-07-11 stsp .Cm rebase .
1407 083957f4 2020-02-24 stsp .It Cm histedit Oo Fl a Oc Oo Fl c Oc Oo Fl F Ar histedit-script Oc Oo Fl m Oc
1408 0ebf8283 2019-07-24 stsp Edit commit history between the work tree's current base commit and
1409 0ebf8283 2019-07-24 stsp the tip commit of the work tree's current branch.
1410 6e54d307 2020-02-24 stsp .Pp
1411 6e54d307 2020-02-24 stsp Before starting a
1412 6e54d307 2020-02-24 stsp .Cm histedit
1413 6e54d307 2020-02-24 stsp operation the work tree's current branch must be set with
1414 6e54d307 2020-02-24 stsp .Cm got update -b
1415 6e54d307 2020-02-24 stsp to the branch which should be edited, unless this branch is already the
1416 6e54d307 2020-02-24 stsp current branch of the work tree.
1417 6e54d307 2020-02-24 stsp The tip of this branch represents the upper bound (inclusive) of commits
1418 6e54d307 2020-02-24 stsp touched by the
1419 6e54d307 2020-02-24 stsp .Cm histedit
1420 6e54d307 2020-02-24 stsp operation.
1421 0ebf8283 2019-07-24 stsp .Pp
1422 6e54d307 2020-02-24 stsp Furthermore, the work tree's base commit
1423 6e54d307 2020-02-24 stsp must be set with
1424 6e54d307 2020-02-24 stsp .Cm got update -c
1425 6e54d307 2020-02-24 stsp to a point in this branch's commit history where editing should begin.
1426 6e54d307 2020-02-24 stsp This commit represents the lower bound (non-inclusive) of commits touched
1427 6e54d307 2020-02-24 stsp by the
1428 6e54d307 2020-02-24 stsp .Cm histedit
1429 6e54d307 2020-02-24 stsp operation.
1430 6e54d307 2020-02-24 stsp .Pp
1431 0ebf8283 2019-07-24 stsp Editing of commit history is controlled via a
1432 0ebf8283 2019-07-24 stsp .Ar histedit script
1433 46fa4c83 2020-02-24 stsp which can be written in an editor based on a template, passed on the
1434 46fa4c83 2020-02-24 stsp command line, or generated with the
1435 083957f4 2020-02-24 stsp .Fl m
1436 083957f4 2020-02-24 stsp option if only log messages need to be edited.
1437 083957f4 2020-02-24 stsp .Pp
1438 0ebf8283 2019-07-24 stsp The format of the histedit script is line-based.
1439 0ebf8283 2019-07-24 stsp Each line in the script begins with a command name, followed by
1440 0ebf8283 2019-07-24 stsp whitespace and an argument.
1441 0ebf8283 2019-07-24 stsp For most commands, the expected argument is a commit ID SHA1 hash.
1442 0ebf8283 2019-07-24 stsp Any remaining text on the line is ignored.
1443 0ebf8283 2019-07-24 stsp Lines which begin with the
1444 0ebf8283 2019-07-24 stsp .Sq #
1445 0ebf8283 2019-07-24 stsp character are ignored entirely.
1446 0ebf8283 2019-07-24 stsp .Pp
1447 0ebf8283 2019-07-24 stsp The available commands are as follows:
1448 0ebf8283 2019-07-24 stsp .Bl -column YXZ pick-commit
1449 0ebf8283 2019-07-24 stsp .It pick Ar commit Ta Use the specified commit as it is.
1450 a698f62e 2019-07-25 stsp .It edit Ar commit Ta Use the specified commit but once changes have been
1451 0ebf8283 2019-07-24 stsp merged into the work tree interrupt the histedit operation for amending.
1452 0ebf8283 2019-07-24 stsp .It fold Ar commit Ta Combine the specified commit with the next commit
1453 0ebf8283 2019-07-24 stsp listed further below that will be used.
1454 0ebf8283 2019-07-24 stsp .It drop Ar commit Ta Remove this commit from the edited history.
1455 0ebf8283 2019-07-24 stsp .It mesg Ar log-message Ta Use the specified single-line log message for
1456 0ebf8283 2019-07-24 stsp the commit on the previous line.
1457 0ebf8283 2019-07-24 stsp If the log message argument is left empty, open an editor where a new
1458 0ebf8283 2019-07-24 stsp log message can be written.
1459 0ebf8283 2019-07-24 stsp .El
1460 0ebf8283 2019-07-24 stsp .Pp
1461 ba67992e 2019-07-25 stsp Every commit in the history being edited must be mentioned in the script.
1462 0ebf8283 2019-07-24 stsp Lines may be re-ordered to change the order of commits in the edited history.
1463 5b87815e 2020-03-05 stsp No commit may be listed more than once.
1464 0ebf8283 2019-07-24 stsp .Pp
1465 c6b4581b 2019-07-28 stsp Edited commits are accumulated on a temporary branch which the work tree
1466 c6b4581b 2019-07-28 stsp will remain switched to throughout the entire histedit operation.
1467 0ebf8283 2019-07-24 stsp Once history editing has completed successfully, the temporary branch becomes
1468 498a90b7 2019-07-25 stsp the new version of the work tree's branch and the work tree is automatically
1469 498a90b7 2019-07-25 stsp switched to it.
1470 0ebf8283 2019-07-24 stsp .Pp
1471 0ebf8283 2019-07-24 stsp While merging commits, show the status of each affected file,
1472 0ebf8283 2019-07-24 stsp using the following status codes:
1473 0ebf8283 2019-07-24 stsp .Bl -column YXZ description
1474 0ebf8283 2019-07-24 stsp .It G Ta file was merged
1475 0ebf8283 2019-07-24 stsp .It C Ta file was merged and conflicts occurred during merge
1476 0ebf8283 2019-07-24 stsp .It ! Ta changes destined for a missing file were not merged
1477 0ebf8283 2019-07-24 stsp .It D Ta file was deleted
1478 0ebf8283 2019-07-24 stsp .It d Ta file's deletion was obstructed by local modifications
1479 0ebf8283 2019-07-24 stsp .It A Ta new file was added
1480 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1481 0ebf8283 2019-07-24 stsp .El
1482 0ebf8283 2019-07-24 stsp .Pp
1483 0ebf8283 2019-07-24 stsp If merge conflicts occur the histedit operation is interrupted and may
1484 0ebf8283 2019-07-24 stsp be continued once conflicts have been resolved.
1485 0ebf8283 2019-07-24 stsp Alternatively, the histedit operation may be aborted which will leave
1486 0ebf8283 2019-07-24 stsp the work tree switched back to its original branch.
1487 0ebf8283 2019-07-24 stsp .Pp
1488 0ebf8283 2019-07-24 stsp If a merge conflict is resolved in a way which renders the merged
1489 0ebf8283 2019-07-24 stsp change into a no-op change, the corresponding commit will be elided
1490 0ebf8283 2019-07-24 stsp when the histedit operation continues.
1491 0ebf8283 2019-07-24 stsp .Pp
1492 0ebf8283 2019-07-24 stsp .Cm got histedit
1493 0ebf8283 2019-07-24 stsp will refuse to run if certain preconditions are not met.
1494 c7d20a3f 2019-07-30 stsp If the work tree's current branch is not in the
1495 c7d20a3f 2019-07-30 stsp .Dq refs/heads/
1496 c7d20a3f 2019-07-30 stsp reference namespace, the history of the branch may not be edited.
1497 0ebf8283 2019-07-24 stsp If the work tree contains multiple base commits it must first be updated
1498 0ebf8283 2019-07-24 stsp to a single base commit with
1499 0ebf8283 2019-07-24 stsp .Cm got update .
1500 4ed9f614 2019-08-04 stsp If changes have been staged with
1501 4ed9f614 2019-08-04 stsp .Cm got stage ,
1502 bc3056e3 2019-08-18 stsp these changes must first be committed with
1503 4ed9f614 2019-08-04 stsp .Cm got commit
1504 4ed9f614 2019-08-04 stsp or unstaged with
1505 4ed9f614 2019-08-04 stsp .Cm got unstage .
1506 0ebf8283 2019-07-24 stsp If the work tree contains local changes, these changes must first be
1507 0ebf8283 2019-07-24 stsp committed with
1508 0ebf8283 2019-07-24 stsp .Cm got commit
1509 0ebf8283 2019-07-24 stsp or reverted with
1510 0ebf8283 2019-07-24 stsp .Cm got revert .
1511 0ebf8283 2019-07-24 stsp If the edited history contains changes to files outside of the work tree's
1512 0ebf8283 2019-07-24 stsp path prefix, the work tree cannot be used to edit the history of this branch.
1513 0ebf8283 2019-07-24 stsp .Pp
1514 0ebf8283 2019-07-24 stsp The
1515 7ef62c4e 2020-02-24 stsp .Cm got update ,
1516 7ef62c4e 2020-02-24 stsp .Cm got rebase ,
1517 65db4ffb 2020-02-24 stsp and
1518 65db4ffb 2020-02-24 stsp .Cm got integrate
1519 65db4ffb 2020-02-24 stsp commands will refuse to run while a histedit operation is in progress.
1520 a698f62e 2019-07-25 stsp Other commands which manipulate the work tree may be used, and the
1521 0ebf8283 2019-07-24 stsp .Cm got commit
1522 a698f62e 2019-07-25 stsp command may be used to commit arbitrary changes to the temporary branch
1523 a698f62e 2019-07-25 stsp while the histedit operation is interrupted.
1524 0ebf8283 2019-07-24 stsp .Pp
1525 0ebf8283 2019-07-24 stsp The options for
1526 0ebf8283 2019-07-24 stsp .Cm got histedit
1527 0ebf8283 2019-07-24 stsp are as follows:
1528 0ebf8283 2019-07-24 stsp .Bl -tag -width Ds
1529 0ebf8283 2019-07-24 stsp .It Fl a
1530 0ebf8283 2019-07-24 stsp Abort an interrupted histedit operation.
1531 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
1532 0ebf8283 2019-07-24 stsp .It Fl c
1533 0ebf8283 2019-07-24 stsp Continue an interrupted histedit operation.
1534 c478f6d8 2019-08-08 stsp If this option is used, no other command-line arguments are allowed.
1535 ddbfac99 2020-02-24 stsp .It Fl F Ar histedit-script
1536 ddbfac99 2020-02-24 stsp Use the specified
1537 ddbfac99 2020-02-24 stsp .Ar histedit-script
1538 ddbfac99 2020-02-24 stsp instead of opening a temporary file in an editor where a histedit script
1539 ddbfac99 2020-02-24 stsp can be written.
1540 083957f4 2020-02-24 stsp .It Fl m
1541 083957f4 2020-02-24 stsp Edit log messages only.
1542 083957f4 2020-02-24 stsp This option is a quick equivalent to a histedit script which edits
1543 2bdefe56 2020-02-24 tracey only log messages but otherwise leaves every picked commit as-is.
1544 083957f4 2020-02-24 stsp The
1545 083957f4 2020-02-24 stsp .Fl m
1546 083957f4 2020-02-24 stsp option can only be used when starting a new histedit operation.
1547 083957f4 2020-02-24 stsp If this option is used, no other command-line arguments are allowed.
1548 818c7501 2019-07-11 stsp .El
1549 0ebf8283 2019-07-24 stsp .It Cm he
1550 0ebf8283 2019-07-24 stsp Short alias for
1551 0ebf8283 2019-07-24 stsp .Cm histedit .
1552 2822a352 2019-10-15 stsp .It Cm integrate Ar branch
1553 2822a352 2019-10-15 stsp Integrate the specified
1554 2822a352 2019-10-15 stsp .Ar branch
1555 2822a352 2019-10-15 stsp into the work tree's current branch.
1556 2822a352 2019-10-15 stsp Files in the work tree are updated to match the contents on the integrated
1557 2822a352 2019-10-15 stsp .Ar branch ,
1558 2822a352 2019-10-15 stsp and the reference of the work tree's branch is changed to point at the
1559 2822a352 2019-10-15 stsp head commit of the integrated
1560 2822a352 2019-10-15 stsp .Ar branch .
1561 2822a352 2019-10-15 stsp .Pp
1562 2822a352 2019-10-15 stsp Both branches can be considered equivalent after integration since they
1563 2822a352 2019-10-15 stsp will be pointing at the same commit.
1564 2822a352 2019-10-15 stsp Both branches remain available for future work, if desired.
1565 2822a352 2019-10-15 stsp In case the integrated
1566 2822a352 2019-10-15 stsp .Ar branch
1567 2822a352 2019-10-15 stsp is no longer needed it may be deleted with
1568 2822a352 2019-10-15 stsp .Cm got branch -d .
1569 2822a352 2019-10-15 stsp .Pp
1570 2822a352 2019-10-15 stsp Show the status of each affected file, using the following status codes:
1571 2822a352 2019-10-15 stsp .Bl -column YXZ description
1572 2822a352 2019-10-15 stsp .It U Ta file was updated
1573 2822a352 2019-10-15 stsp .It D Ta file was deleted
1574 2822a352 2019-10-15 stsp .It A Ta new file was added
1575 2822a352 2019-10-15 stsp .It \(a~ Ta versioned file is obstructed by a non-regular file
1576 2822a352 2019-10-15 stsp .It ! Ta a missing versioned file was restored
1577 2822a352 2019-10-15 stsp .El
1578 2822a352 2019-10-15 stsp .Pp
1579 2822a352 2019-10-15 stsp .Cm got integrate
1580 2822a352 2019-10-15 stsp will refuse to run if certain preconditions are not met.
1581 2822a352 2019-10-15 stsp Most importantly, the
1582 2822a352 2019-10-15 stsp .Ar branch
1583 2822a352 2019-10-15 stsp must have been rebased onto the work tree's current branch with
1584 2822a352 2019-10-15 stsp .Cm got rebase
1585 2822a352 2019-10-15 stsp before it can be integrated, in order to linearize commit history and
1586 2822a352 2019-10-15 stsp resolve merge conflicts.
1587 2822a352 2019-10-15 stsp If the work tree contains multiple base commits it must first be updated
1588 2822a352 2019-10-15 stsp to a single base commit with
1589 2822a352 2019-10-15 stsp .Cm got update .
1590 2822a352 2019-10-15 stsp If changes have been staged with
1591 2822a352 2019-10-15 stsp .Cm got stage ,
1592 2822a352 2019-10-15 stsp these changes must first be committed with
1593 2822a352 2019-10-15 stsp .Cm got commit
1594 2822a352 2019-10-15 stsp or unstaged with
1595 2822a352 2019-10-15 stsp .Cm got unstage .
1596 2822a352 2019-10-15 stsp If the work tree contains local changes, these changes must first be
1597 2822a352 2019-10-15 stsp committed with
1598 2822a352 2019-10-15 stsp .Cm got commit
1599 2822a352 2019-10-15 stsp or reverted with
1600 2822a352 2019-10-15 stsp .Cm got revert .
1601 2822a352 2019-10-15 stsp .It Cm ig
1602 2822a352 2019-10-15 stsp Short alias for
1603 2822a352 2019-10-15 stsp .Cm integrate .
1604 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 ...
1605 2db2652d 2019-08-07 stsp Stage local changes for inclusion in the next commit.
1606 2db2652d 2019-08-07 stsp If no
1607 2db2652d 2019-08-07 stsp .Ar path
1608 2db2652d 2019-08-07 stsp is specified, stage all changes in the work tree.
1609 2db2652d 2019-08-07 stsp Otherwise, stage changes at or within the specified paths.
1610 4ed9f614 2019-08-04 stsp Paths may be staged if they are added, modified, or deleted according to
1611 4ed9f614 2019-08-04 stsp .Cm got status .
1612 4ed9f614 2019-08-04 stsp .Pp
1613 9d8b19a4 2019-08-04 stsp Show the status of each affected file, using the following status codes:
1614 9d8b19a4 2019-08-04 stsp .Bl -column YXZ description
1615 9d8b19a4 2019-08-04 stsp .It A Ta file addition has been staged
1616 9d8b19a4 2019-08-04 stsp .It M Ta file modification has been staged
1617 9d8b19a4 2019-08-04 stsp .It D Ta file deletion has been staged
1618 9d8b19a4 2019-08-04 stsp .El
1619 9d8b19a4 2019-08-04 stsp .Pp
1620 9d8b19a4 2019-08-04 stsp Staged file contents are saved in newly created blob objects in the repository.
1621 52c8d4ac 2019-08-04 stsp These blobs will be referred to by tree objects once staged changes have been
1622 9d8b19a4 2019-08-04 stsp committed.
1623 9d8b19a4 2019-08-04 stsp .Pp
1624 890ea719 2019-08-04 stsp Staged changes affect the behaviour of
1625 4ed9f614 2019-08-04 stsp .Cm got commit ,
1626 4ed9f614 2019-08-04 stsp .Cm got status ,
1627 4ed9f614 2019-08-04 stsp and
1628 4ed9f614 2019-08-04 stsp .Cm got diff .
1629 4ed9f614 2019-08-04 stsp While paths with staged changes exist, the
1630 4ed9f614 2019-08-04 stsp .Cm got commit
1631 4ed9f614 2019-08-04 stsp command will refuse to commit any paths which do not have staged changes.
1632 4ed9f614 2019-08-04 stsp Local changes created on top of staged changes can only be committed if
1633 4ed9f614 2019-08-04 stsp the path is staged again, or if the staged changes are committed first.
1634 4ed9f614 2019-08-04 stsp The
1635 4ed9f614 2019-08-04 stsp .Cm got status
1636 4ed9f614 2019-08-04 stsp command will show both local changes and staged changes.
1637 4ed9f614 2019-08-04 stsp The
1638 4ed9f614 2019-08-04 stsp .Cm got diff
1639 ecf14362 2019-08-04 stsp command is able to display local changes relative to staged changes,
1640 ecf14362 2019-08-04 stsp and to display staged changes relative to the repository.
1641 4ed9f614 2019-08-04 stsp The
1642 4ed9f614 2019-08-04 stsp .Cm got revert
1643 4ed9f614 2019-08-04 stsp command cannot revert staged changes but may be used to revert
1644 4f2494e6 2019-08-08 stsp local changes created on top of staged changes.
1645 4ed9f614 2019-08-04 stsp .Pp
1646 4ed9f614 2019-08-04 stsp The options for
1647 4ed9f614 2019-08-04 stsp .Cm got stage
1648 4ed9f614 2019-08-04 stsp are as follows:
1649 4ed9f614 2019-08-04 stsp .Bl -tag -width Ds
1650 4ed9f614 2019-08-04 stsp .It Fl l
1651 4ed9f614 2019-08-04 stsp Instead of staging new changes, list paths which are already staged,
1652 9d8b19a4 2019-08-04 stsp along with the IDs of staged blob objects and stage status codes.
1653 9d8b19a4 2019-08-04 stsp If paths were provided in the command line show the staged paths
1654 1dd86744 2019-08-12 anthony among the specified paths.
1655 1dd86744 2019-08-12 anthony Otherwise, show all staged paths.
1656 dc424a06 2019-08-07 stsp .It Fl p
1657 dc424a06 2019-08-07 stsp Instead of staging the entire content of a changed file, interactively
1658 dc424a06 2019-08-07 stsp select or reject changes for staging based on
1659 dc424a06 2019-08-07 stsp .Dq y
1660 6d23ec10 2019-08-08 stsp (stage change),
1661 dc424a06 2019-08-07 stsp .Dq n
1662 6d23ec10 2019-08-08 stsp (reject change), and
1663 b353a198 2019-08-07 stsp .Dq q
1664 6d23ec10 2019-08-08 stsp (quit staging this file) responses.
1665 dc424a06 2019-08-07 stsp If a file is in modified status, individual patches derived from the
1666 dc424a06 2019-08-07 stsp modified file content can be staged.
1667 6d23ec10 2019-08-08 stsp Files in added or deleted status may only be staged or rejected in
1668 6d23ec10 2019-08-08 stsp their entirety.
1669 3a070a2b 2019-08-07 stsp .It Fl F Ar response-script
1670 dc424a06 2019-08-07 stsp With the
1671 dc424a06 2019-08-07 stsp .Fl p
1672 3a070a2b 2019-08-07 stsp option, read
1673 3a070a2b 2019-08-07 stsp .Dq y ,
1674 3a070a2b 2019-08-07 stsp .Dq n ,
1675 3a070a2b 2019-08-07 stsp and
1676 3a070a2b 2019-08-07 stsp .Dq q
1677 0e2f5884 2019-08-07 stsp responses line-by-line from the specified
1678 0e2f5884 2019-08-07 stsp .Ar response-script
1679 0e2f5884 2019-08-07 stsp file instead of prompting interactively.
1680 4ed9f614 2019-08-04 stsp .El
1681 4ed9f614 2019-08-04 stsp .Pp
1682 4ed9f614 2019-08-04 stsp .Cm got stage
1683 4ed9f614 2019-08-04 stsp will refuse to run if certain preconditions are not met.
1684 4ed9f614 2019-08-04 stsp If a file contains merge conflicts, these conflicts must be resolved first.
1685 4ed9f614 2019-08-04 stsp If a file is found to be out of date relative to the head commit on the
1686 4ed9f614 2019-08-04 stsp work tree's current branch, the file must be updated with
1687 4ed9f614 2019-08-04 stsp .Cm got update
1688 4ed9f614 2019-08-04 stsp before it can be staged (however, this does not prevent the file from
1689 4ed9f614 2019-08-04 stsp becoming out-of-date at some point after having been staged).
1690 4ed9f614 2019-08-04 stsp .Pp
1691 4ed9f614 2019-08-04 stsp The
1692 4ed9f614 2019-08-04 stsp .Cm got update ,
1693 4ed9f614 2019-08-04 stsp .Cm got rebase ,
1694 4ed9f614 2019-08-04 stsp and
1695 4ed9f614 2019-08-04 stsp .Cm got histedit
1696 4ed9f614 2019-08-04 stsp commands will refuse to run while staged changes exist.
1697 4ed9f614 2019-08-04 stsp If staged changes cannot be committed because a staged path
1698 4ed9f614 2019-08-04 stsp is out of date, the path must be unstaged with
1699 4ed9f614 2019-08-04 stsp .Cm got unstage
1700 4ed9f614 2019-08-04 stsp before it can be updated with
1701 4ed9f614 2019-08-04 stsp .Cm got update ,
1702 4ed9f614 2019-08-04 stsp and may then be staged again if necessary.
1703 4ed9f614 2019-08-04 stsp .It Cm sg
1704 4ed9f614 2019-08-04 stsp Short alias for
1705 4ed9f614 2019-08-04 stsp .Cm stage .
1706 dfc23429 2019-08-11 stsp .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1707 4ed9f614 2019-08-04 stsp Merge staged changes back into the work tree and put affected paths
1708 4ed9f614 2019-08-04 stsp back into non-staged status.
1709 4ed9f614 2019-08-04 stsp If no
1710 4ed9f614 2019-08-04 stsp .Ar path
1711 4ed9f614 2019-08-04 stsp is specified, unstage all staged changes across the entire work tree.
1712 2db2652d 2019-08-07 stsp Otherwise, unstage changes at or within the specified paths.
1713 4ed9f614 2019-08-04 stsp .Pp
1714 4ed9f614 2019-08-04 stsp Show the status of each affected file, using the following status codes:
1715 4ed9f614 2019-08-04 stsp .Bl -column YXZ description
1716 4ed9f614 2019-08-04 stsp .It G Ta file was unstaged
1717 4ed9f614 2019-08-04 stsp .It C Ta file was unstaged and conflicts occurred during merge
1718 4ed9f614 2019-08-04 stsp .It ! Ta changes destined for a missing file were not merged
1719 4ed9f614 2019-08-04 stsp .It D Ta file was staged as deleted and still is deleted
1720 4ed9f614 2019-08-04 stsp .It d Ta file's deletion was obstructed by local modifications
1721 1dd86744 2019-08-12 anthony .It \(a~ Ta changes destined for a non-regular file were not merged
1722 4ed9f614 2019-08-04 stsp .El
1723 2e1f37b0 2019-08-08 stsp .Pp
1724 2e1f37b0 2019-08-08 stsp The options for
1725 2e1f37b0 2019-08-08 stsp .Cm got unstage
1726 2e1f37b0 2019-08-08 stsp are as follows:
1727 2e1f37b0 2019-08-08 stsp .Bl -tag -width Ds
1728 2e1f37b0 2019-08-08 stsp .It Fl p
1729 2e1f37b0 2019-08-08 stsp Instead of unstaging the entire content of a changed file, interactively
1730 2e1f37b0 2019-08-08 stsp select or reject changes for unstaging based on
1731 2e1f37b0 2019-08-08 stsp .Dq y
1732 2e1f37b0 2019-08-08 stsp (unstage change),
1733 2e1f37b0 2019-08-08 stsp .Dq n
1734 2e1f37b0 2019-08-08 stsp (keep change staged), and
1735 2e1f37b0 2019-08-08 stsp .Dq q
1736 2e1f37b0 2019-08-08 stsp (quit unstaging this file) responses.
1737 2e1f37b0 2019-08-08 stsp If a file is staged in modified status, individual patches derived from the
1738 2e1f37b0 2019-08-08 stsp staged file content can be unstaged.
1739 2e1f37b0 2019-08-08 stsp Files staged in added or deleted status may only be unstaged in their entirety.
1740 2e1f37b0 2019-08-08 stsp .It Fl F Ar response-script
1741 2e1f37b0 2019-08-08 stsp With the
1742 2e1f37b0 2019-08-08 stsp .Fl p
1743 2e1f37b0 2019-08-08 stsp option, read
1744 2e1f37b0 2019-08-08 stsp .Dq y ,
1745 2e1f37b0 2019-08-08 stsp .Dq n ,
1746 2e1f37b0 2019-08-08 stsp and
1747 2e1f37b0 2019-08-08 stsp .Dq q
1748 2e1f37b0 2019-08-08 stsp responses line-by-line from the specified
1749 2e1f37b0 2019-08-08 stsp .Ar response-script
1750 2e1f37b0 2019-08-08 stsp file instead of prompting interactively.
1751 2e1f37b0 2019-08-08 stsp .El
1752 4ed9f614 2019-08-04 stsp .It Cm ug
1753 4ed9f614 2019-08-04 stsp Short alias for
1754 4ed9f614 2019-08-04 stsp .Cm unstage .
1755 5be72254 2019-08-26 stsp .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1756 896e9b6f 2019-08-26 stsp Parse and print contents of objects to standard output in a line-based
1757 896e9b6f 2019-08-26 stsp text format.
1758 896e9b6f 2019-08-26 stsp Content of commit, tree, and tag objects is printed in a way similar
1759 896e9b6f 2019-08-26 stsp to the actual content stored in such objects.
1760 896e9b6f 2019-08-26 stsp Blob object contents are printed as they would appear in files on disk.
1761 896e9b6f 2019-08-26 stsp .Pp
1762 896e9b6f 2019-08-26 stsp Attempt to interpret each argument as a reference, a tag name, or
1763 896e9b6f 2019-08-26 stsp an object ID SHA1 hash.
1764 01073a5d 2019-08-22 stsp References will be resolved to an object ID.
1765 01073a5d 2019-08-22 stsp Tag names will resolved to a tag object.
1766 01073a5d 2019-08-22 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
1767 01073a5d 2019-08-22 stsp automatically, provided the abbreviation is unique.
1768 01073a5d 2019-08-22 stsp .Pp
1769 896e9b6f 2019-08-26 stsp If none of the above interpretations produce a valid result, or if the
1770 896e9b6f 2019-08-26 stsp .Fl P
1771 896e9b6f 2019-08-26 stsp option is used, attempt to interpret the argument as a path which will
1772 896e9b6f 2019-08-26 stsp be resolved to the ID of an object found at this path in the repository.
1773 896e9b6f 2019-08-26 stsp .Pp
1774 01073a5d 2019-08-22 stsp The options for
1775 01073a5d 2019-08-22 stsp .Cm got cat
1776 01073a5d 2019-08-22 stsp are as follows:
1777 01073a5d 2019-08-22 stsp .Bl -tag -width Ds
1778 896e9b6f 2019-08-26 stsp .It Fl c Ar commit
1779 896e9b6f 2019-08-26 stsp Look up paths in the specified
1780 896e9b6f 2019-08-26 stsp .Ar commit .
1781 896e9b6f 2019-08-26 stsp If this option is not used, paths are looked up in the commit resolved
1782 896e9b6f 2019-08-26 stsp via the repository's HEAD reference.
1783 896e9b6f 2019-08-26 stsp The expected argument is a commit ID SHA1 hash or an existing reference
1784 896e9b6f 2019-08-26 stsp or tag name which will be resolved to a commit ID.
1785 896e9b6f 2019-08-26 stsp An abbreviated hash argument will be expanded to a full SHA1 hash
1786 896e9b6f 2019-08-26 stsp automatically, provided the abbreviation is unique.
1787 01073a5d 2019-08-22 stsp .It Fl r Ar repository-path
1788 01073a5d 2019-08-22 stsp Use the repository at the specified path.
1789 01073a5d 2019-08-22 stsp If not specified, assume the repository is located at or above the current
1790 01073a5d 2019-08-22 stsp working directory.
1791 01073a5d 2019-08-22 stsp If this directory is a
1792 01073a5d 2019-08-22 stsp .Nm
1793 01073a5d 2019-08-22 stsp work tree, use the repository path associated with this work tree.
1794 896e9b6f 2019-08-26 stsp .It Fl P
1795 896e9b6f 2019-08-26 stsp Interpret all arguments as paths only.
1796 896e9b6f 2019-08-26 stsp This option can be used to resolve ambiguity in cases where paths
1797 896e9b6f 2019-08-26 stsp look like tag names, reference names, or object IDs.
1798 4ed9f614 2019-08-04 stsp .El
1799 01073a5d 2019-08-22 stsp .El
1800 74416c47 2019-05-09 stsp .Sh ENVIRONMENT
1801 74416c47 2019-05-09 stsp .Bl -tag -width GOT_AUTHOR
1802 74416c47 2019-05-09 stsp .It Ev GOT_AUTHOR
1803 74416c47 2019-05-09 stsp The author's name and email address for
1804 21a44f98 2019-07-15 stsp .Cm got commit
1805 21a44f98 2019-07-15 stsp and
1806 21a44f98 2019-07-15 stsp .Cm got import ,
1807 74416c47 2019-05-09 stsp for example:
1808 aba9c984 2019-09-08 stsp .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1809 84792843 2019-08-09 stsp Because
1810 0e444aba 2019-08-08 stsp .Xr git 1
1811 84792843 2019-08-09 stsp may fail to parse commits without an email address in author data,
1812 0e444aba 2019-08-08 stsp .Nm
1813 84792843 2019-08-09 stsp attempts to reject
1814 0e444aba 2019-08-08 stsp .Ev GOT_AUTHOR
1815 84792843 2019-08-09 stsp environment variables with a missing email address.
1816 c9956ddf 2019-09-08 stsp .Pp
1817 c9956ddf 2019-09-08 stsp If present, Git's
1818 aba9c984 2019-09-08 stsp .Dv user.name
1819 aba9c984 2019-09-08 stsp and
1820 709ae9eb 2019-09-08 stsp .Dv user.email
1821 709ae9eb 2019-09-08 stsp configuration settings in the repository's
1822 aba9c984 2019-09-08 stsp .Pa .git/config
1823 aba9c984 2019-09-08 stsp file will override the value of
1824 aba9c984 2019-09-08 stsp .Ev GOT_AUTHOR .
1825 c9956ddf 2019-09-08 stsp However, the
1826 c9956ddf 2019-09-08 stsp .Dv user.name
1827 c9956ddf 2019-09-08 stsp and
1828 c9956ddf 2019-09-08 stsp .Dv user.email
1829 c9956ddf 2019-09-08 stsp configuration settings contained in Git's global
1830 c9956ddf 2019-09-08 stsp .Pa ~/.gitconfig
1831 c9956ddf 2019-09-08 stsp configuration file will be used only if the
1832 c9956ddf 2019-09-08 stsp .Ev GOT_AUTHOR
1833 c9956ddf 2019-09-08 stsp environment variable is
1834 c9956ddf 2019-09-08 stsp .Em not
1835 c9956ddf 2019-09-08 stsp set.
1836 1dd86744 2019-08-12 anthony .It Ev VISUAL , EDITOR
1837 23594da9 2019-05-13 stsp The editor spawned by
1838 8e7bd50a 2019-08-22 stsp .Cm got commit ,
1839 8e7bd50a 2019-08-22 stsp .Cm got import ,
1840 8e7bd50a 2019-08-22 stsp or
1841 8e7bd50a 2019-08-22 stsp .Cm got tag .
1842 b1ebc001 2019-08-13 stsp .It Ev GOT_LOG_DEFAULT_LIMIT
1843 b1ebc001 2019-08-13 stsp The default limit on the number of commits traversed by
1844 b1ebc001 2019-08-13 stsp .Cm got log .
1845 b1ebc001 2019-08-13 stsp If set to zero, the limit is unbounded.
1846 b1ebc001 2019-08-13 stsp This variable will be silently ignored if it is set to a non-numeric value.
1847 74416c47 2019-05-09 stsp .El
1848 5c860e29 2018-03-12 stsp .Sh EXIT STATUS
1849 5c860e29 2018-03-12 stsp .Ex -std got
1850 97925469 2018-03-17 stsp .Sh EXAMPLES
1851 fa6e0e48 2019-05-23 stsp Clone an existing Git repository for use with
1852 fa6e0e48 2019-05-23 stsp .Nm .
1853 fd039d72 2020-03-18 stsp .Pp
1854 fd039d72 2020-03-18 stsp .Dl $ cd /var/git/
1855 fd039d72 2020-03-18 stsp .Dl $ got clone ssh://git@github.com/openbsd/src.git
1856 fd039d72 2020-03-18 stsp .Pp
1857 fd039d72 2020-03-18 stsp Use of HTTP URLs currently requires
1858 fa6e0e48 2019-05-23 stsp .Xr git 1 :
1859 d83d9d5c 2019-05-13 stsp .Pp
1860 fa6e0e48 2019-05-23 stsp .Dl $ cd /var/git/
1861 fa6e0e48 2019-05-23 stsp .Dl $ git clone --bare https://github.com/openbsd/src.git
1862 fa6e0e48 2019-05-23 stsp .Pp
1863 3ce1b845 2019-07-15 stsp Alternatively, for quick and dirty local testing of
1864 3ce1b845 2019-07-15 stsp .Nm
1865 3ce1b845 2019-07-15 stsp a new Git repository could be created and populated with files,
1866 3ce1b845 2019-07-15 stsp e.g. from a temporary CVS checkout located at
1867 3ce1b845 2019-07-15 stsp .Pa /tmp/src :
1868 fa6e0e48 2019-05-23 stsp .Pp
1869 3ce1b845 2019-07-15 stsp .Dl $ got init /var/git/src.git
1870 2930ef13 2019-07-15 stsp .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1871 3ce1b845 2019-07-15 stsp .Pp
1872 3ce1b845 2019-07-15 stsp Check out a work tree from the Git repository to /usr/src:
1873 3ce1b845 2019-07-15 stsp .Pp
1874 fa6e0e48 2019-05-23 stsp .Dl $ got checkout /var/git/src.git /usr/src
1875 fa6e0e48 2019-05-23 stsp .Pp
1876 e70c17ce 2019-05-22 stsp View local changes in a work tree directory:
1877 e70c17ce 2019-05-22 stsp .Pp
1878 e70c17ce 2019-05-22 stsp .Dl $ got status
1879 e70c17ce 2019-05-22 stsp .Dl $ got diff | less
1880 33aa809d 2019-08-08 stsp .Pp
1881 33aa809d 2019-08-08 stsp Interactively revert selected local changes in a work tree directory:
1882 e70c17ce 2019-05-22 stsp .Pp
1883 33aa809d 2019-08-08 stsp .Dl $ got revert -p -R\ .
1884 33aa809d 2019-08-08 stsp .Pp
1885 e70c17ce 2019-05-22 stsp In a work tree or a git repository directory, list all branch references:
1886 e70c17ce 2019-05-22 stsp .Pp
1887 4e759de4 2019-06-26 stsp .Dl $ got branch -l
1888 e70c17ce 2019-05-22 stsp .Pp
1889 fa6e0e48 2019-05-23 stsp In a work tree or a git repository directory, create a new branch called
1890 e70c17ce 2019-05-22 stsp .Dq unified-buffer-cache
1891 d83d9d5c 2019-05-13 stsp which is forked off the
1892 d83d9d5c 2019-05-13 stsp .Dq master
1893 d83d9d5c 2019-05-13 stsp branch:
1894 d83d9d5c 2019-05-13 stsp .Pp
1895 4e759de4 2019-06-26 stsp .Dl $ got branch unified-buffer-cache master
1896 e70c17ce 2019-05-22 stsp .Pp
1897 e70c17ce 2019-05-22 stsp Switch an existing work tree to the branch
1898 e70c17ce 2019-05-22 stsp .Dq unified-buffer-cache .
1899 e70c17ce 2019-05-22 stsp Local changes in the work tree will be preserved and merged if necessary:
1900 e70c17ce 2019-05-22 stsp .Pp
1901 e70c17ce 2019-05-22 stsp .Dl $ got update -b unified-buffer-cache
1902 e70c17ce 2019-05-22 stsp .Pp
1903 fa6e0e48 2019-05-23 stsp Create a new commit from local changes in a work tree directory.
1904 fa6e0e48 2019-05-23 stsp This new commit will become the head commit of the work tree's current branch:
1905 fa6e0e48 2019-05-23 stsp .Pp
1906 fa6e0e48 2019-05-23 stsp .Dl $ got commit
1907 fa6e0e48 2019-05-23 stsp .Pp
1908 fa6e0e48 2019-05-23 stsp In a work tree or a git repository directory, view changes committed in
1909 fa6e0e48 2019-05-23 stsp the 3 most recent commits to the work tree's branch, or the branch resolved
1910 fa6e0e48 2019-05-23 stsp via the repository's HEAD reference, respectively:
1911 fa6e0e48 2019-05-23 stsp .Pp
1912 48c8c60d 2020-01-27 stsp .Dl $ got log -p -l 3
1913 5b666081 2020-02-24 stsp .Pp
1914 5b666081 2020-02-24 stsp In a work tree or a git repository directory, log the history of a subdirectory:
1915 5b666081 2020-02-24 stsp .Pp
1916 5b666081 2020-02-24 stsp .Dl $ got log sys/uvm
1917 5b666081 2020-02-24 stsp .Pp
1918 5b666081 2020-02-24 stsp While operating inside a work tree, paths are specified relative to the current
1919 5b666081 2020-02-24 stsp working directory, so this command will log the subdirectory
1920 5b666081 2020-02-24 stsp .Pa sys/uvm :
1921 fa6e0e48 2019-05-23 stsp .Pp
1922 5b666081 2020-02-24 stsp .Dl $ cd sys/uvm && got log '.'
1923 5b666081 2020-02-24 stsp .Pp
1924 5b666081 2020-02-24 stsp And this command has the same effect:
1925 5b666081 2020-02-24 stsp .Pp
1926 5b666081 2020-02-24 stsp .Dl $ cd sys/dev/usb && got log ../../uvm
1927 5b666081 2020-02-24 stsp .Pp
1928 e70c17ce 2019-05-22 stsp Add new files and remove obsolete files in a work tree directory:
1929 e70c17ce 2019-05-22 stsp .Pp
1930 fa6e0e48 2019-05-23 stsp .Dl $ got add sys/uvm/uvm_ubc.c
1931 86d25a1b 2019-07-11 stsp .Dl $ got remove sys/uvm/uvm_vnode.c
1932 e70c17ce 2019-05-22 stsp .Pp
1933 e70c17ce 2019-05-22 stsp Create a new commit from local changes in a work tree directory
1934 e70c17ce 2019-05-22 stsp with a pre-defined log message.
1935 e70c17ce 2019-05-22 stsp .Pp
1936 e70c17ce 2019-05-22 stsp .Dl $ got commit -m 'unify the buffer cache'
1937 95fc3404 2019-07-15 stsp .Pp
1938 95fc3404 2019-07-15 stsp Update any work tree checked out from the
1939 95fc3404 2019-07-15 stsp .Dq unified-buffer-cache
1940 95fc3404 2019-07-15 stsp branch to the latest commit on this branch:
1941 95fc3404 2019-07-15 stsp .Pp
1942 95fc3404 2019-07-15 stsp .Dl $ got update
1943 ac90e726 2019-07-15 stsp .Pp
1944 c991308a 2019-07-15 stsp Roll file content on the unified-buffer-cache branch back by one commit,
1945 c991308a 2019-07-15 stsp and then fetch the rolled-back change into the work tree as a local change
1946 ac90e726 2019-07-15 stsp to be amended and perhaps committed again:
1947 e70c17ce 2019-05-22 stsp .Pp
1948 ac90e726 2019-07-15 stsp .Dl $ got backout unified-buffer-cache
1949 ac90e726 2019-07-15 stsp .Dl $ got commit -m 'roll back previous'
1950 59d52b88 2019-07-15 stsp .Dl $ # now back out the previous backout :-)
1951 ac90e726 2019-07-15 stsp .Dl $ got backout unified-buffer-cache
1952 ac90e726 2019-07-15 stsp .Pp
1953 469dd726 2020-03-20 stsp Fetch new upstream commits into the local repository's
1954 469dd726 2020-03-20 stsp .Dq origin/master
1955 469dd726 2020-03-20 stsp branch:
1956 fa6e0e48 2019-05-23 stsp .Pp
1957 469dd726 2020-03-20 stsp .Dl $ cd /usr/src
1958 469dd726 2020-03-20 stsp .Dl $ got fetch
1959 469dd726 2020-03-20 stsp .Pp
1960 469dd726 2020-03-20 stsp In a repository created with a HTTP URL and
1961 469dd726 2020-03-20 stsp .Cm git clone --bare
1962 469dd726 2020-03-20 stsp the
1963 469dd726 2020-03-20 stsp .Xr git-fetch 1
1964 469dd726 2020-03-20 stsp command must be used instead:
1965 469dd726 2020-03-20 stsp .Pp
1966 fa6e0e48 2019-05-23 stsp .Dl $ cd /var/git/src.git
1967 469dd726 2020-03-20 stsp .Dl $ git fetch origin master:refs/remotes/origin/master
1968 fa6e0e48 2019-05-23 stsp .Pp
1969 469dd726 2020-03-20 stsp Rebase the local
1970 469dd726 2020-03-20 stsp .Dq master
1971 469dd726 2020-03-20 stsp branch to merge the new changes that are now visible on the
1972 469dd726 2020-03-20 stsp .Dq origin/master
1973 469dd726 2020-03-20 stsp branch:
1974 469dd726 2020-03-20 stsp .Pp
1975 469dd726 2020-03-20 stsp .Dl $ cd /usr/src
1976 469dd726 2020-03-20 stsp .Dl $ got update -b origin/master
1977 469dd726 2020-03-20 stsp .Dl $ got rebase master
1978 469dd726 2020-03-20 stsp .Pp
1979 fa6e0e48 2019-05-23 stsp Rebase the
1980 fa6e0e48 2019-05-23 stsp .Dq unified-buffer-cache
1981 fa6e0e48 2019-05-23 stsp branch on top of the new head commit of the
1982 fa6e0e48 2019-05-23 stsp .Dq master
1983 fa6e0e48 2019-05-23 stsp branch.
1984 fa6e0e48 2019-05-23 stsp .Pp
1985 818c7501 2019-07-11 stsp .Dl $ got update -b master
1986 818c7501 2019-07-11 stsp .Dl $ got rebase unified-buffer-cache
1987 7d7ffedb 2019-07-14 stsp .Pp
1988 7d7ffedb 2019-07-14 stsp Create a patch from all changes on the unified-buffer-cache branch.
1989 1dd86744 2019-08-12 anthony The patch can be mailed out for review and applied to
1990 1dd86744 2019-08-12 anthony .Ox Ns 's
1991 1dd86744 2019-08-12 anthony CVS tree:
1992 7d7ffedb 2019-07-14 stsp .Pp
1993 7d7ffedb 2019-07-14 stsp .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1994 7d7ffedb 2019-07-14 stsp .Pp
1995 0ebf8283 2019-07-24 stsp Edit the entire commit history of the
1996 0ebf8283 2019-07-24 stsp .Dq unified-buffer-cache
1997 0ebf8283 2019-07-24 stsp branch:
1998 0ebf8283 2019-07-24 stsp .Pp
1999 0ebf8283 2019-07-24 stsp .Dl $ got update -b unified-buffer-cache
2000 0ebf8283 2019-07-24 stsp .Dl $ got update -c master
2001 0ebf8283 2019-07-24 stsp .Dl $ got histedit
2002 bf390dec 2020-03-20 stsp .Pp
2003 bf390dec 2020-03-20 stsp In order to merge changes committed to the
2004 bf390dec 2020-03-20 stsp .Dq unified-buffer-cache
2005 bf390dec 2020-03-20 stsp branch back into the
2006 bf390dec 2020-03-20 stsp .Dq master
2007 bf390dec 2020-03-20 stsp branch, the
2008 bf390dec 2020-03-20 stsp .Dq unified-buffer-cache
2009 bf390dec 2020-03-20 stsp branch must first be rebased onto the
2010 bf390dec 2020-03-20 stsp .Dq master
2011 bf390dec 2020-03-20 stsp branch:
2012 bf390dec 2020-03-20 stsp .Pp
2013 bf390dec 2020-03-20 stsp .Dl $ got update -b master
2014 bf390dec 2020-03-20 stsp .Dl $ got rebase unified-buffer-cache
2015 bf390dec 2020-03-20 stsp .Pp
2016 bf390dec 2020-03-20 stsp Changes on the
2017 bf390dec 2020-03-20 stsp .Dq unified-buffer-cache
2018 bf390dec 2020-03-20 stsp branch can now be made visible on the
2019 bf390dec 2020-03-20 stsp .Dq master
2020 bf390dec 2020-03-20 stsp branch with
2021 bf390dec 2020-03-20 stsp .Cm got integrate .
2022 bf390dec 2020-03-20 stsp Because the rebase operation switched the work tree to the
2023 bf390dec 2020-03-20 stsp .Dq unified-buffer-cache
2024 bf390dec 2020-03-20 stsp branch, the work tree must be switched back to the
2025 bf390dec 2020-03-20 stsp .Dq master
2026 bf390dec 2020-03-20 stsp branch before the
2027 bf390dec 2020-03-20 stsp .Dq unified-buffer-cache
2028 bf390dec 2020-03-20 stsp branch can be integrated into
2029 bf390dec 2020-03-20 stsp .Dq master :
2030 ff2cf171 2019-07-28 stsp .Pp
2031 bf390dec 2020-03-20 stsp .Dl $ got update -b master
2032 bf390dec 2020-03-20 stsp .Dl $ got integrate unified-buffer-cache
2033 469dd726 2020-03-20 stsp .Pp
2034 469dd726 2020-03-20 stsp Additional steps may be necessary if local changes need to be pushed back
2035 7b3fde24 2019-07-28 stsp to the remote repository, which currently requires
2036 7b3fde24 2019-07-28 stsp .Cm git push .
2037 ff2cf171 2019-07-28 stsp Before working against existing branches in a repository cloned with
2038 469dd726 2020-03-20 stsp .Cm git clone --bare
2039 7848a0e1 2020-03-19 stsp instead of
2040 7848a0e1 2020-03-19 stsp .Cm got clone ,
2041 ff2cf171 2019-07-28 stsp a Git
2042 ff2cf171 2019-07-28 stsp .Dq refspec
2043 ff2cf171 2019-07-28 stsp must be configured to map all references in the remote repository
2044 ff2cf171 2019-07-28 stsp into the
2045 ff2cf171 2019-07-28 stsp .Dq refs/remotes
2046 ff2cf171 2019-07-28 stsp namespace of the local repository.
2047 ff2cf171 2019-07-28 stsp This can achieved by setting Git's
2048 ff2cf171 2019-07-28 stsp .Pa remote.origin.fetch
2049 ff2cf171 2019-07-28 stsp configuration variable to the value
2050 ff2cf171 2019-07-28 stsp .Dq +refs/heads/*:refs/remotes/origin/*
2051 ff2cf171 2019-07-28 stsp with the
2052 ff2cf171 2019-07-28 stsp .Cm git config
2053 ff2cf171 2019-07-28 stsp command:
2054 ff2cf171 2019-07-28 stsp .Pp
2055 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
2056 ff2cf171 2019-07-28 stsp .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
2057 eac81709 2020-03-21 stsp .Pp
2058 469dd726 2020-03-20 stsp Additionally, the
2059 469dd726 2020-03-20 stsp .Dq mirror
2060 469dd726 2020-03-20 stsp option must be disabled:
2061 ff2cf171 2019-07-28 stsp .Pp
2062 469dd726 2020-03-20 stsp .Dl $ cd /var/git/repo
2063 469dd726 2020-03-20 stsp .Dl $ git config remote.origin.mirror false
2064 469dd726 2020-03-20 stsp .Pp
2065 ff2cf171 2019-07-28 stsp Alternatively, the following
2066 469dd726 2020-03-20 stsp .Xr git-fetch 1
2067 ff2cf171 2019-07-28 stsp configuration item can be added manually to the Git repository's
2068 ff2cf171 2019-07-28 stsp .Pa config
2069 ff2cf171 2019-07-28 stsp file:
2070 0ebf8283 2019-07-24 stsp .Pp
2071 ff2cf171 2019-07-28 stsp .Dl [remote "origin"]
2072 ff2cf171 2019-07-28 stsp .Dl url = ...
2073 ff2cf171 2019-07-28 stsp .Dl fetch = +refs/heads/*:refs/remotes/origin/*
2074 469dd726 2020-03-20 stsp .Dl mirror = false
2075 ff2cf171 2019-07-28 stsp .Pp
2076 fe307c9b 2019-07-28 stsp This configuration leaves the local repository's
2077 ff2cf171 2019-07-28 stsp .Dq refs/heads
2078 ff2cf171 2019-07-28 stsp namespace free for use by local branches checked out with
2079 ff2cf171 2019-07-28 stsp .Cm got checkout
2080 ff2cf171 2019-07-28 stsp and, if needed, created with
2081 ff2cf171 2019-07-28 stsp .Cm got branch .
2082 ff2cf171 2019-07-28 stsp .Pp
2083 ff2cf171 2019-07-28 stsp Branches in the
2084 ff2cf171 2019-07-28 stsp .Dq remotes/origin
2085 469dd726 2020-03-20 stsp namespace can now be updated with incoming changes from the remote
2086 ff2cf171 2019-07-28 stsp repository with
2087 469dd726 2020-03-20 stsp .Cm got fetch
2088 469dd726 2020-03-20 stsp or
2089 469dd726 2020-03-20 stsp .Xr git-fetch 1
2090 469dd726 2020-03-20 stsp without extra command line arguments:
2091 ff2cf171 2019-07-28 stsp .Pp
2092 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
2093 469dd726 2020-03-20 stsp .Dl $ git fetch
2094 ff2cf171 2019-07-28 stsp .Pp
2095 7b0db533 2020-02-04 stsp To make changes fetched from the remote repository appear on the
2096 ff2cf171 2019-07-28 stsp .Dq master
2097 7b0db533 2020-02-04 stsp branch, the
2098 ff2cf171 2019-07-28 stsp .Dq master
2099 ff2cf171 2019-07-28 stsp branch must be rebased onto the
2100 ff2cf171 2019-07-28 stsp .Dq origin/master
2101 7b0db533 2020-02-04 stsp branch.
2102 7b0db533 2020-02-04 stsp This will also merge local changes, if any, with the incoming changes:
2103 ff2cf171 2019-07-28 stsp .Pp
2104 ff2cf171 2019-07-28 stsp .Dl $ got update -b origin/master
2105 ff2cf171 2019-07-28 stsp .Dl $ got rebase master
2106 083957f4 2020-02-24 stsp .Pp
2107 083957f4 2020-02-24 stsp On the
2108 083957f4 2020-02-24 stsp .Dq master
2109 083957f4 2020-02-24 stsp branch, log messages for local changes can now be amended with
2110 083957f4 2020-02-24 stsp .Dq OK
2111 083957f4 2020-02-24 stsp by other developers and any other important new information:
2112 ff2cf171 2019-07-28 stsp .Pp
2113 083957f4 2020-02-24 stsp .Dl $ got update -c origin/master
2114 083957f4 2020-02-24 stsp .Dl $ got histedit -m
2115 083957f4 2020-02-24 stsp .Pp
2116 7b0db533 2020-02-04 stsp Local changes on the
2117 ff2cf171 2019-07-28 stsp .Dq master
2118 ff2cf171 2019-07-28 stsp branch can then be pushed to the remote
2119 ff2cf171 2019-07-28 stsp repository with
2120 ff2cf171 2019-07-28 stsp .Cm git push :
2121 ff2cf171 2019-07-28 stsp .Pp
2122 ff2cf171 2019-07-28 stsp .Dl $ cd /var/git/repo
2123 ff2cf171 2019-07-28 stsp .Dl $ git push origin master
2124 5c860e29 2018-03-12 stsp .Sh SEE ALSO
2125 2312fc47 2019-07-15 stsp .Xr tog 1 ,
2126 2312fc47 2019-07-15 stsp .Xr git-repository 5 ,
2127 285dc8a4 2018-03-13 stsp .Xr got-worktree 5
2128 1a208aaf 2018-04-01 stsp .Sh AUTHORS
2129 1a208aaf 2018-04-01 stsp .An Stefan Sperling Aq Mt stsp@openbsd.org
2130 1a208aaf 2018-04-01 stsp .An Martin Pieuchot Aq Mt mpi@openbsd.org
2131 bc3056e3 2019-08-18 stsp .An Joshua Stein Aq Mt jcs@openbsd.org
2132 83b416ed 2020-03-18 stsp .An Ori Bernstein Aq Mt ori@openbsd.org
2133 fa6e0e48 2019-05-23 stsp .Sh CAVEATS
2134 fa6e0e48 2019-05-23 stsp .Nm
2135 fa6e0e48 2019-05-23 stsp is a work-in-progress and many commands remain to be implemented.
2136 fa6e0e48 2019-05-23 stsp At present, the user has to fall back on
2137 fa6e0e48 2019-05-23 stsp .Xr git 1
2138 ff2cf171 2019-07-28 stsp to perform many tasks, in particular tasks related to repository
2139 ff2cf171 2019-07-28 stsp administration and tasks which require a network connection.