Autogenerated manpages for v2.46.1-565-g6531f
[git-manpages.git] / man1 / git-branch.1
blob2ad4077a7732c2f2584e76dc0f9b15ac502ec86f
1 '\" t
2 .\"     Title: git-branch
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-18
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.1.565.g6531f31ef3
8 .\"  Language: English
9 .\"
10 .TH "GIT\-BRANCH" "1" "2024-09-18" "Git 2\&.46\&.1\&.565\&.g6531f3" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-branch \- List, create, or delete branches
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit branch\fR [\-\-color[=<when>] | \-\-no\-color] [\-\-show\-current]
36         [\-v [\-\-abbrev=<n> | \-\-no\-abbrev]]
37         [\-\-column[=<options>] | \-\-no\-column] [\-\-sort=<key>]
38         [\-\-merged [<commit>]] [\-\-no\-merged [<commit>]]
39         [\-\-contains [<commit>]] [\-\-no\-contains [<commit>]]
40         [\-\-points\-at <object>] [\-\-format=<format>]
41         [(\-r | \-\-remotes) | (\-a | \-\-all)]
42         [\-\-list] [<pattern>\&...\:]
43 \fIgit branch\fR [\-\-track[=(direct|inherit)] | \-\-no\-track] [\-f]
44         [\-\-recurse\-submodules] <branchname> [<start\-point>]
45 \fIgit branch\fR (\-\-set\-upstream\-to=<upstream> | \-u <upstream>) [<branchname>]
46 \fIgit branch\fR \-\-unset\-upstream [<branchname>]
47 \fIgit branch\fR (\-m | \-M) [<oldbranch>] <newbranch>
48 \fIgit branch\fR (\-c | \-C) [<oldbranch>] <newbranch>
49 \fIgit branch\fR (\-d | \-D) [\-r] <branchname>\&...\:
50 \fIgit branch\fR \-\-edit\-description [<branchname>]
51 .fi
52 .SH "DESCRIPTION"
53 .sp
54 If \fB\-\-list\fR is given, or if there are no non\-option arguments, existing branches are listed; the current branch will be highlighted in green and marked with an asterisk\&. Any branches checked out in linked worktrees will be highlighted in cyan and marked with a plus sign\&. Option \fB\-r\fR causes the remote\-tracking branches to be listed, and option \fB\-a\fR shows both local and remote branches\&.
55 .sp
56 If a \fB<pattern>\fR is given, it is used as a shell wildcard to restrict the output to matching branches\&. If multiple patterns are given, a branch is shown if it matches any of the patterns\&.
57 .sp
58 Note that when providing a \fB<pattern>\fR, you must use \fB\-\-list\fR; otherwise the command may be interpreted as branch creation\&.
59 .sp
60 With \fB\-\-contains\fR, shows only the branches that contain the named commit (in other words, the branches whose tip commits are descendants of the named commit), \fB\-\-no\-contains\fR inverts it\&. With \fB\-\-merged\fR, only branches merged into the named commit (i\&.e\&. the branches whose tip commits are reachable from the named commit) will be listed\&. With \fB\-\-no\-merged\fR only branches not merged into the named commit will be listed\&. If the <commit> argument is missing it defaults to \fBHEAD\fR (i\&.e\&. the tip of the current branch)\&.
61 .sp
62 The command\(cqs second form creates a new branch head named <branchname> which points to the current \fBHEAD\fR, or <start\-point> if given\&. As a special case, for <start\-point>, you may use \fB"A\&.\&.\&.B"\fR as a shortcut for the merge base of \fBA\fR and \fBB\fR if there is exactly one merge base\&. You can leave out at most one of \fBA\fR and \fBB\fR, in which case it defaults to \fBHEAD\fR\&.
63 .sp
64 Note that this will create the new branch, but it will not switch the working tree to it; use "git switch <newbranch>" to switch to the new branch\&.
65 .sp
66 When a local branch is started off a remote\-tracking branch, Git sets up the branch (specifically the \fBbranch\&.<name>\&.remote\fR and \fBbranch\&.<name>\&.merge\fR configuration entries) so that \fIgit pull\fR will appropriately merge from the remote\-tracking branch\&. This behavior may be changed via the global \fBbranch\&.autoSetupMerge\fR configuration flag\&. That setting can be overridden by using the \fB\-\-track\fR and \fB\-\-no\-track\fR options, and changed later using \fBgit branch \-\-set\-upstream\-to\fR\&.
67 .sp
68 With a \fB\-m\fR or \fB\-M\fR option, <oldbranch> will be renamed to <newbranch>\&. If <oldbranch> had a corresponding reflog, it is renamed to match <newbranch>, and a reflog entry is created to remember the branch renaming\&. If <newbranch> exists, \-M must be used to force the rename to happen\&.
69 .sp
70 The \fB\-c\fR and \fB\-C\fR options have the exact same semantics as \fB\-m\fR and \fB\-M\fR, except instead of the branch being renamed, it will be copied to a new name, along with its config and reflog\&.
71 .sp
72 With a \fB\-d\fR or \fB\-D\fR option, \fB<branchname>\fR will be deleted\&. You may specify more than one branch for deletion\&. If the branch currently has a reflog then the reflog will also be deleted\&.
73 .sp
74 Use \fB\-r\fR together with \fB\-d\fR to delete remote\-tracking branches\&. Note, that it only makes sense to delete remote\-tracking branches if they no longer exist in the remote repository or if \fIgit fetch\fR was configured not to fetch them again\&. See also the \fIprune\fR subcommand of \fBgit-remote\fR(1) for a way to clean up all obsolete remote\-tracking branches\&.
75 .SH "OPTIONS"
76 .PP
77 \-d, \-\-delete
78 .RS 4
79 Delete a branch\&. The branch must be fully merged in its upstream branch, or in
80 \fBHEAD\fR
81 if no upstream was set with
82 \fB\-\-track\fR
84 \fB\-\-set\-upstream\-to\fR\&.
85 .RE
86 .PP
87 \-D
88 .RS 4
89 Shortcut for
90 \fB\-\-delete \-\-force\fR\&.
91 .RE
92 .PP
93 \-\-create\-reflog
94 .RS 4
95 Create the branch\(cqs reflog\&. This activates recording of all changes made to the branch ref, enabling use of date based sha1 expressions such as "<branchname>@{yesterday}"\&. Note that in non\-bare repositories, reflogs are usually enabled by default by the
96 \fBcore\&.logAllRefUpdates\fR
97 config option\&. The negated form
98 \fB\-\-no\-create\-reflog\fR
99 only overrides an earlier
100 \fB\-\-create\-reflog\fR, but currently does not negate the setting of
101 \fBcore\&.logAllRefUpdates\fR\&.
104 \-f, \-\-force
105 .RS 4
106 Reset <branchname> to <start\-point>, even if <branchname> exists already\&. Without
107 \fB\-f\fR,
108 \fIgit branch\fR
109 refuses to change an existing branch\&. In combination with
110 \fB\-d\fR
112 \fB\-\-delete\fR), allow deleting the branch irrespective of its merged status, or whether it even points to a valid commit\&. In combination with
113 \fB\-m\fR
115 \fB\-\-move\fR), allow renaming the branch even if the new branch name already exists, the same applies for
116 \fB\-c\fR
118 \fB\-\-copy\fR)\&.
120 Note that
121 \fIgit branch \-f <branchname> [<start\-point>]\fR, even with
122 \fI\-f\fR, refuses to change an existing branch
123 \fB<branchname>\fR
124 that is checked out in another worktree linked to the same repository\&.
127 \-m, \-\-move
128 .RS 4
129 Move/rename a branch, together with its config and reflog\&.
133 .RS 4
134 Shortcut for
135 \fB\-\-move \-\-force\fR\&.
138 \-c, \-\-copy
139 .RS 4
140 Copy a branch, together with its config and reflog\&.
144 .RS 4
145 Shortcut for
146 \fB\-\-copy \-\-force\fR\&.
149 \-\-color[=<when>]
150 .RS 4
151 Color branches to highlight current, local, and remote\-tracking branches\&. The value must be always (the default), never, or auto\&.
154 \-\-no\-color
155 .RS 4
156 Turn off branch colors, even when the configuration file gives the default to color output\&. Same as
157 \fB\-\-color=never\fR\&.
160 \-i, \-\-ignore\-case
161 .RS 4
162 Sorting and filtering branches are case insensitive\&.
165 \-\-omit\-empty
166 .RS 4
167 Do not print a newline after formatted refs where the format expands to the empty string\&.
170 \-\-column[=<options>], \-\-no\-column
171 .RS 4
172 Display branch listing in columns\&. See configuration variable
173 \fBcolumn\&.branch\fR
174 for option syntax\&.
175 \fB\-\-column\fR
177 \fB\-\-no\-column\fR
178 without options are equivalent to
179 \fIalways\fR
181 \fInever\fR
182 respectively\&.
184 This option is only applicable in non\-verbose mode\&.
187 \-r, \-\-remotes
188 .RS 4
189 List or delete (if used with \-d) the remote\-tracking branches\&. Combine with
190 \fB\-\-list\fR
191 to match the optional pattern(s)\&.
194 \-a, \-\-all
195 .RS 4
196 List both remote\-tracking branches and local branches\&. Combine with
197 \fB\-\-list\fR
198 to match optional pattern(s)\&.
201 \-l, \-\-list
202 .RS 4
203 List branches\&. With optional
204 \fB<pattern>\&.\&.\&.\fR, e\&.g\&.
205 \fBgit branch \-\-list \*(Aqmaint\-*\*(Aq\fR, list only the branches that match the pattern(s)\&.
208 \-\-show\-current
209 .RS 4
210 Print the name of the current branch\&. In detached HEAD state, nothing is printed\&.
213 \-v, \-vv, \-\-verbose
214 .RS 4
215 When in list mode, show sha1 and commit subject line for each head, along with relationship to upstream branch (if any)\&. If given twice, print the path of the linked worktree (if any) and the name of the upstream branch, as well (see also
216 \fBgit remote show <remote>\fR)\&. Note that the current worktree\(cqs HEAD will not have its path printed (it will always be your current directory)\&.
219 \-q, \-\-quiet
220 .RS 4
221 Be more quiet when creating or deleting a branch, suppressing non\-error messages\&.
224 \-\-abbrev=<n>
225 .RS 4
226 In the verbose listing that show the commit object name, show the shortest prefix that is at least
227 \fI<n>\fR
228 hexdigits long that uniquely refers the object\&. The default value is 7 and can be overridden by the
229 \fBcore\&.abbrev\fR
230 config option\&.
233 \-\-no\-abbrev
234 .RS 4
235 Display the full sha1s in the output listing rather than abbreviating them\&.
238 \-t, \-\-track[=(direct|inherit)]
239 .RS 4
240 When creating a new branch, set up
241 \fBbranch\&.<name>\&.remote\fR
243 \fBbranch\&.<name>\&.merge\fR
244 configuration entries to set "upstream" tracking configuration for the new branch\&. This configuration will tell git to show the relationship between the two branches in
245 \fBgit status\fR
247 \fBgit branch \-v\fR\&. Furthermore, it directs
248 \fBgit pull\fR
249 without arguments to pull from the upstream when the new branch is checked out\&.
251 The exact upstream branch is chosen depending on the optional argument:
252 \fB\-t\fR,
253 \fB\-\-track\fR, or
254 \fB\-\-track=direct\fR
255 means to use the start\-point branch itself as the upstream;
256 \fB\-\-track=inherit\fR
257 means to copy the upstream configuration of the start\-point branch\&.
259 The branch\&.autoSetupMerge configuration variable specifies how
260 \fBgit switch\fR,
261 \fBgit checkout\fR
263 \fBgit branch\fR
264 should behave when neither
265 \fB\-\-track\fR
267 \fB\-\-no\-track\fR
268 are specified:
270 The default option,
271 \fBtrue\fR, behaves as though
272 \fB\-\-track=direct\fR
273 were given whenever the start\-point is a remote\-tracking branch\&.
274 \fBfalse\fR
275 behaves as if
276 \fB\-\-no\-track\fR
277 were given\&.
278 \fBalways\fR
279 behaves as though
280 \fB\-\-track=direct\fR
281 were given\&.
282 \fBinherit\fR
283 behaves as though
284 \fB\-\-track=inherit\fR
285 were given\&.
286 \fBsimple\fR
287 behaves as though
288 \fB\-\-track=direct\fR
289 were given only when the start\-point is a remote\-tracking branch and the new branch has the same name as the remote branch\&.
292 \fBgit-pull\fR(1)
294 \fBgit-config\fR(1)
295 for additional discussion on how the
296 \fBbranch\&.<name>\&.remote\fR
298 \fBbranch\&.<name>\&.merge\fR
299 options are used\&.
302 \-\-no\-track
303 .RS 4
304 Do not set up "upstream" configuration, even if the branch\&.autoSetupMerge configuration variable is set\&.
307 \-\-recurse\-submodules
308 .RS 4
309 THIS OPTION IS EXPERIMENTAL! Causes the current command to recurse into submodules if
310 \fBsubmodule\&.propagateBranches\fR
311 is enabled\&. See
312 \fBsubmodule\&.propagateBranches\fR
314 \fBgit-config\fR(1)\&. Currently, only branch creation is supported\&.
316 When used in branch creation, a new branch <branchname> will be created in the superproject and all of the submodules in the superproject\(cqs <start\-point>\&. In submodules, the branch will point to the submodule commit in the superproject\(cqs <start\-point> but the branch\(cqs tracking information will be set up based on the submodule\(cqs branches and remotes e\&.g\&.
317 \fBgit branch \-\-recurse\-submodules topic origin/main\fR
318 will create the submodule branch "topic" that points to the submodule commit in the superproject\(cqs "origin/main", but tracks the submodule\(cqs "origin/main"\&.
321 \-\-set\-upstream
322 .RS 4
323 As this option had confusing syntax, it is no longer supported\&. Please use
324 \fB\-\-track\fR
326 \fB\-\-set\-upstream\-to\fR
327 instead\&.
330 \-u <upstream>, \-\-set\-upstream\-to=<upstream>
331 .RS 4
332 Set up <branchname>\*(Aqs tracking information so <upstream> is considered <branchname>\*(Aqs upstream branch\&. If no <branchname> is specified, then it defaults to the current branch\&.
335 \-\-unset\-upstream
336 .RS 4
337 Remove the upstream information for <branchname>\&. If no branch is specified it defaults to the current branch\&.
340 \-\-edit\-description
341 .RS 4
342 Open an editor and edit the text to explain what the branch is for, to be used by various other commands (e\&.g\&.
343 \fBformat\-patch\fR,
344 \fBrequest\-pull\fR, and
345 \fBmerge\fR
346 (if enabled))\&. Multi\-line explanations may be used\&.
349 \-\-contains [<commit>]
350 .RS 4
351 Only list branches which contain the specified commit (HEAD if not specified)\&. Implies
352 \fB\-\-list\fR\&.
355 \-\-no\-contains [<commit>]
356 .RS 4
357 Only list branches which don\(cqt contain the specified commit (HEAD if not specified)\&. Implies
358 \fB\-\-list\fR\&.
361 \-\-merged [<commit>]
362 .RS 4
363 Only list branches whose tips are reachable from the specified commit (HEAD if not specified)\&. Implies
364 \fB\-\-list\fR\&.
367 \-\-no\-merged [<commit>]
368 .RS 4
369 Only list branches whose tips are not reachable from the specified commit (HEAD if not specified)\&. Implies
370 \fB\-\-list\fR\&.
373 <branchname>
374 .RS 4
375 The name of the branch to create or delete\&. The new branch name must pass all checks defined by
376 \fBgit-check-ref-format\fR(1)\&. Some of these checks may restrict the characters allowed in a branch name\&.
379 <start\-point>
380 .RS 4
381 The new branch head will point to this commit\&. It may be given as a branch name, a commit\-id, or a tag\&. If this option is omitted, the current HEAD will be used instead\&.
384 <oldbranch>
385 .RS 4
386 The name of an existing branch\&. If this option is omitted, the name of the current branch will be used instead\&.
389 <newbranch>
390 .RS 4
391 The new name for an existing branch\&. The same restrictions as for <branchname> apply\&.
394 \-\-sort=<key>
395 .RS 4
396 Sort based on the key given\&. Prefix
397 \fB\-\fR
398 to sort in descending order of the value\&. You may use the \-\-sort=<key> option multiple times, in which case the last key becomes the primary key\&. The keys supported are the same as those in
399 \fBgit for\-each\-ref\fR\&. Sort order defaults to the value configured for the
400 \fBbranch\&.sort\fR
401 variable if it exists, or to sorting based on the full refname (including
402 \fBrefs/\&.\&.\&.\fR
403 prefix)\&. This lists detached HEAD (if present) first, then local branches and finally remote\-tracking branches\&. See
404 \fBgit-config\fR(1)\&.
407 \-\-points\-at <object>
408 .RS 4
409 Only list branches of the given object\&.
412 \-\-format <format>
413 .RS 4
414 A string that interpolates
415 \fB%(fieldname)\fR
416 from a branch ref being shown and the object it points at\&. The format is the same as that of
417 \fBgit-for-each-ref\fR(1)\&.
419 .SH "CONFIGURATION"
421 \fBpager\&.branch\fR is only respected when listing branches, i\&.e\&., when \fB\-\-list\fR is used or implied\&. The default is to use a pager\&. See \fBgit-config\fR(1)\&.
423 Everything above this line in this section isn\(cqt included from the \fBgit-config\fR(1) documentation\&. The content that follows is the same as what\(cqs found there:
425 branch\&.autoSetupMerge
426 .RS 4
427 Tells
428 \fIgit branch\fR,
429 \fIgit switch\fR
431 \fIgit checkout\fR
432 to set up new branches so that
433 \fBgit-pull\fR(1)
434 will appropriately merge from the starting point branch\&. Note that even if this option is not set, this behavior can be chosen per\-branch using the
435 \fB\-\-track\fR
437 \fB\-\-no\-track\fR
438 options\&. The valid settings are:
439 \fBfalse\fR \(em no automatic setup is done;
440 \fBtrue\fR \(em automatic setup is done when the starting point is a remote\-tracking branch;
441 \fBalways\fR \(em automatic setup is done when the starting point is either a local branch or remote\-tracking branch;
442 \fBinherit\fR \(em if the starting point has a tracking configuration, it is copied to the new branch;
443 \fBsimple\fR \(em automatic setup is done only when the starting point is a remote\-tracking branch and the new branch has the same name as the remote branch\&. This option defaults to true\&.
446 branch\&.autoSetupRebase
447 .RS 4
448 When a new branch is created with
449 \fIgit branch\fR,
450 \fIgit switch\fR
452 \fIgit checkout\fR
453 that tracks another branch, this variable tells Git to set up pull to rebase instead of merge (see "branch\&.<name>\&.rebase")\&. When
454 \fBnever\fR, rebase is never automatically set to true\&. When
455 \fBlocal\fR, rebase is set to true for tracked branches of other local branches\&. When
456 \fBremote\fR, rebase is set to true for tracked branches of remote\-tracking branches\&. When
457 \fBalways\fR, rebase will be set to true for all tracking branches\&. See "branch\&.autoSetupMerge" for details on how to set up a branch to track another branch\&. This option defaults to never\&.
460 branch\&.sort
461 .RS 4
462 This variable controls the sort ordering of branches when displayed by
463 \fBgit-branch\fR(1)\&. Without the "\-\-sort=<value>" option provided, the value of this variable will be used as the default\&. See
464 \fBgit-for-each-ref\fR(1)
465 field names for valid values\&.
468 branch\&.<name>\&.remote
469 .RS 4
470 When on branch <name>, it tells
471 \fIgit fetch\fR
473 \fIgit push\fR
474 which remote to fetch from or push to\&. The remote to push to may be overridden with
475 \fBremote\&.pushDefault\fR
476 (for all branches)\&. The remote to push to, for the current branch, may be further overridden by
477 \fBbranch\&.<name>\&.pushRemote\fR\&. If no remote is configured, or if you are not on any branch and there is more than one remote defined in the repository, it defaults to
478 \fBorigin\fR
479 for fetching and
480 \fBremote\&.pushDefault\fR
481 for pushing\&. Additionally,
482 \fB\&.\fR
483 (a period) is the current local repository (a dot\-repository), see
484 \fBbranch\&.<name>\&.merge\fR\*(Aqs final note below\&.
487 branch\&.<name>\&.pushRemote
488 .RS 4
489 When on branch <name>, it overrides
490 \fBbranch\&.<name>\&.remote\fR
491 for pushing\&. It also overrides
492 \fBremote\&.pushDefault\fR
493 for pushing from branch <name>\&. When you pull from one place (e\&.g\&. your upstream) and push to another place (e\&.g\&. your own publishing repository), you would want to set
494 \fBremote\&.pushDefault\fR
495 to specify the remote to push to for all branches, and use this option to override it for a specific branch\&.
498 branch\&.<name>\&.merge
499 .RS 4
500 Defines, together with branch\&.<name>\&.remote, the upstream branch for the given branch\&. It tells
501 \fIgit fetch\fR/\fIgit pull\fR/\fIgit rebase\fR
502 which branch to merge and can also affect
503 \fIgit push\fR
504 (see push\&.default)\&. When in branch <name>, it tells
505 \fIgit fetch\fR
506 the default refspec to be marked for merging in FETCH_HEAD\&. The value is handled like the remote part of a refspec, and must match a ref which is fetched from the remote given by "branch\&.<name>\&.remote"\&. The merge information is used by
507 \fIgit pull\fR
508 (which first calls
509 \fIgit fetch\fR) to lookup the default branch for merging\&. Without this option,
510 \fIgit pull\fR
511 defaults to merge the first refspec fetched\&. Specify multiple values to get an octopus merge\&. If you wish to setup
512 \fIgit pull\fR
513 so that it merges into <name> from another branch in the local repository, you can point branch\&.<name>\&.merge to the desired branch, and use the relative path setting
514 \fB\&.\fR
515 (a period) for branch\&.<name>\&.remote\&.
518 branch\&.<name>\&.mergeOptions
519 .RS 4
520 Sets default options for merging into branch <name>\&. The syntax and supported options are the same as those of
521 \fBgit-merge\fR(1), but option values containing whitespace characters are currently not supported\&.
524 branch\&.<name>\&.rebase
525 .RS 4
526 When true, rebase the branch <name> on top of the fetched branch, instead of merging the default branch from the default remote when "git pull" is run\&. See "pull\&.rebase" for doing this in a non branch\-specific manner\&.
528 When
529 \fBmerges\fR
530 (or just
531 \fIm\fR), pass the
532 \fB\-\-rebase\-merges\fR
533 option to
534 \fIgit rebase\fR
535 so that the local merge commits are included in the rebase (see
536 \fBgit-rebase\fR(1)
537 for details)\&.
539 When the value is
540 \fBinteractive\fR
541 (or just
542 \fIi\fR), the rebase is run in interactive mode\&.
544 \fBNOTE\fR: this is a possibly dangerous operation; do
545 \fBnot\fR
546 use it unless you understand the implications (see
547 \fBgit-rebase\fR(1)
548 for details)\&.
551 branch\&.<name>\&.description
552 .RS 4
553 Branch description, can be edited with
554 \fBgit branch \-\-edit\-description\fR\&. Branch description is automatically added to the format\-patch cover letter or request\-pull summary\&.
556 .SH "EXAMPLES"
558 Start development from a known tag
559 .RS 4
561 .if n \{\
562 .RS 4
565 $ git clone git://git\&.kernel\&.org/pub/scm/\&.\&.\&./linux\-2\&.6 my2\&.6
566 $ cd my2\&.6
567 $ git branch my2\&.6\&.14 v2\&.6\&.14   \fB(1)\fR
568 $ git switch my2\&.6\&.14
570 .if n \{\
574 tab(:);
575 r lw(\n(.lu*75u/100u).
576 \fB1.\fR\h'-2n':T{
577 This step and the next one could be combined into a single step with "checkout \-b my2\&.6\&.14 v2\&.6\&.14"\&.
582 Delete an unneeded branch
583 .RS 4
585 .if n \{\
586 .RS 4
589 $ git clone git://git\&.kernel\&.org/\&.\&.\&./git\&.git my\&.git
590 $ cd my\&.git
591 $ git branch \-d \-r origin/todo origin/html origin/man   \fB(1)\fR
592 $ git branch \-D test                                    \fB(2)\fR
594 .if n \{\
598 tab(:);
599 r lw(\n(.lu*75u/100u).
600 \fB1.\fR\h'-2n':T{
601 Delete the remote\-tracking branches "todo", "html" and "man"\&. The next
602 \fIfetch\fR
604 \fIpull\fR
605 will create them again unless you configure them not to\&. See
606 \fBgit-fetch\fR(1)\&.
608 \fB2.\fR\h'-2n':T{
609 Delete the "test" branch even if the "master" branch (or whichever branch is currently checked out) does not have all commits from the test branch\&.
614 Listing branches from a specific remote
615 .RS 4
617 .if n \{\
618 .RS 4
621 $ git branch \-r \-l \*(Aq<remote>/<pattern>\*(Aq                 \fB(1)\fR
622 $ git for\-each\-ref \*(Aqrefs/remotes/<remote>/<pattern>\*(Aq    \fB(2)\fR
624 .if n \{\
628 tab(:);
629 r lw(\n(.lu*75u/100u).
630 \fB1.\fR\h'-2n':T{
631 Using
632 \fB\-a\fR
633 would conflate <remote> with any local branches you happen to have been prefixed with the same <remote> pattern\&.
635 \fB2.\fR\h'-2n':T{
636 \fBfor\-each\-ref\fR
637 can take a wide range of options\&. See
638 \fBgit-for-each-ref\fR(1)
643 Patterns will normally need quoting\&.
644 .SH "NOTES"
646 If you are creating a branch that you want to switch to immediately, it is easier to use the "git switch" command with its \fB\-c\fR option to do the same thing with a single command\&.
648 The options \fB\-\-contains\fR, \fB\-\-no\-contains\fR, \fB\-\-merged\fR and \fB\-\-no\-merged\fR serve four related but different purposes:
650 .RS 4
651 .ie n \{\
652 \h'-04'\(bu\h'+03'\c
654 .el \{\
655 .sp -1
656 .IP \(bu 2.3
658 \fB\-\-contains <commit>\fR
659 is used to find all branches which will need special attention if <commit> were to be rebased or amended, since those branches contain the specified <commit>\&.
662 .RS 4
663 .ie n \{\
664 \h'-04'\(bu\h'+03'\c
666 .el \{\
667 .sp -1
668 .IP \(bu 2.3
670 \fB\-\-no\-contains <commit>\fR
671 is the inverse of that, i\&.e\&. branches that don\(cqt contain the specified <commit>\&.
674 .RS 4
675 .ie n \{\
676 \h'-04'\(bu\h'+03'\c
678 .el \{\
679 .sp -1
680 .IP \(bu 2.3
682 \fB\-\-merged\fR
683 is used to find all branches which can be safely deleted, since those branches are fully contained by HEAD\&.
686 .RS 4
687 .ie n \{\
688 \h'-04'\(bu\h'+03'\c
690 .el \{\
691 .sp -1
692 .IP \(bu 2.3
694 \fB\-\-no\-merged\fR
695 is used to find branches which are candidates for merging into HEAD, since those branches are not fully contained by HEAD\&.
698 When combining multiple \fB\-\-contains\fR and \fB\-\-no\-contains\fR filters, only references that contain at least one of the \fB\-\-contains\fR commits and contain none of the \fB\-\-no\-contains\fR commits are shown\&.
700 When combining multiple \fB\-\-merged\fR and \fB\-\-no\-merged\fR filters, only references that are reachable from at least one of the \fB\-\-merged\fR commits and from none of the \fB\-\-no\-merged\fR commits are shown\&.
701 .SH "SEE ALSO"
703 \fBgit-check-ref-format\fR(1), \fBgit-fetch\fR(1), \fBgit-remote\fR(1), \m[blue]\fB\(lqUnderstanding history: What is a branch?\(rq\fR\m[]\&\s-2\u[1]\d\s+2 in the Git User\(cqs Manual\&.
704 .SH "GIT"
706 Part of the \fBgit\fR(1) suite
707 .SH "NOTES"
708 .IP " 1." 4
709 \(lqUnderstanding history: What is
710 a branch?\(rq
711 .RS 4
712 \%git-htmldocs/user-manual.html#what-is-a-branch