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