]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-rerere.txt
Merge branch 'kk/maint-prefix-in-config-mak'
[thirdparty/git.git] / Documentation / git-rerere.txt
CommitLineData
8389b52b
JH
1git-rerere(1)
2=============
3
4NAME
5----
c3f0baac 6git-rerere - Reuse recorded resolution of conflicted merges
8389b52b
JH
7
8SYNOPSIS
9--------
5d2c3b01 10'git rerere' ['clear'|'forget' <pathspec>|'diff'|'status'|'gc']
8389b52b
JH
11
12DESCRIPTION
13-----------
14
c97038d1
SB
15In a workflow employing relatively long lived topic branches,
16the developer sometimes needs to resolve the same conflicts over
8389b52b
JH
17and over again until the topic branches are done (either merged
18to the "release" branch, or sent out and accepted upstream).
19
c97038d1
SB
20This command assists the developer in this process by recording
21conflicted automerge results and corresponding hand resolve results
22on the initial manual merge, and applying previously recorded
23hand resolutions to their corresponding automerge results.
8389b52b 24
11c57e6a 25[NOTE]
02944cc4 26You need to set the configuration variable rerere.enabled in order to
11c57e6a
JH
27enable this command.
28
cda2d3c1
JH
29
30COMMANDS
31--------
32
0b444cdb 33Normally, 'git rerere' is run without arguments or user-intervention.
cda2d3c1
JH
34However, it has several commands that allow it to interact with
35its working state.
36
37'clear'::
38
39This resets the metadata used by rerere if a merge resolution is to be
0b444cdb 40aborted. Calling 'git am [--skip|--abort]' or 'git rebase [--skip|--abort]'
483bc4f0 41will automatically invoke this command.
cda2d3c1 42
2c640344
MG
43'forget' <pathspec>::
44
45This resets the conflict resolutions which rerere has recorded for the current
5d2c3b01 46conflict in <pathspec>.
2c640344 47
cda2d3c1
JH
48'diff'::
49
50This displays diffs for the current state of the resolution. It is
51useful for tracking what has changed while the user is resolving
52conflicts. Additional arguments are passed directly to the system
2fd02c92 53'diff' command installed in PATH.
cda2d3c1
JH
54
55'status'::
56
0979c106 57Like 'diff', but this only prints the filenames that will be tracked
cda2d3c1
JH
58for resolutions.
59
60'gc'::
61
c97038d1
SB
62This prunes records of conflicted merges that
63occurred a long time ago. By default, unresolved conflicts older
64than 15 days and resolved conflicts older than 60
65days are pruned. These defaults are controlled via the
48c32424 66`gc.rerereunresolved` and `gc.rerereresolved` configuration
c97038d1 67variables respectively.
cda2d3c1
JH
68
69
8389b52b
JH
70DISCUSSION
71----------
72
c97038d1 73When your topic branch modifies an overlapping area that your
8389b52b
JH
74master branch (or upstream) touched since your topic branch
75forked from it, you may want to test it with the latest master,
76even before your topic branch is ready to be pushed upstream:
77
78------------
79 o---*---o topic
80 /
81 o---o---o---*---o---o master
82------------
83
84For such a test, you need to merge master and topic somehow.
85One way to do it is to pull master into the topic branch:
86
87------------
88 $ git checkout topic
c14261ea 89 $ git merge master
8389b52b
JH
90
91 o---*---o---+ topic
92 / /
93 o---o---o---*---o---o master
94------------
95
96The commits marked with `*` touch the same area in the same
97file; you need to resolve the conflicts when creating the commit
0f4f4d15 98marked with `{plus}`. Then you can test the result to make sure your
8389b52b
JH
99work-in-progress still works with what is in the latest master.
100
101After this test merge, there are two ways to continue your work
102on the topic. The easiest is to build on top of the test merge
0f4f4d15 103commit `{plus}`, and when your work in the topic branch is finally
8389b52b
JH
104ready, pull the topic branch into master, and/or ask the
105upstream to pull from you. By that time, however, the master or
0f4f4d15 106the upstream might have been advanced since the test merge `{plus}`,
8389b52b
JH
107in which case the final commit graph would look like this:
108
109------------
110 $ git checkout topic
c14261ea 111 $ git merge master
8389b52b
JH
112 $ ... work on both topic and master branches
113 $ git checkout master
c14261ea 114 $ git merge topic
8389b52b
JH
115
116 o---*---o---+---o---o topic
117 / / \
118 o---o---o---*---o---o---o---o---+ master
119------------
120
121When your topic branch is long-lived, however, your topic branch
122would end up having many such "Merge from master" commits on it,
123which would unnecessarily clutter the development history.
124Readers of the Linux kernel mailing list may remember that Linus
125complained about such too frequent test merges when a subsystem
126maintainer asked to pull from a branch full of "useless merges".
127
128As an alternative, to keep the topic branch clean of test
129merges, you could blow away the test merge, and keep building on
130top of the tip before the test merge:
131
132------------
133 $ git checkout topic
c14261ea 134 $ git merge master
8389b52b
JH
135 $ git reset --hard HEAD^ ;# rewind the test merge
136 $ ... work on both topic and master branches
137 $ git checkout master
c14261ea 138 $ git merge topic
8389b52b
JH
139
140 o---*---o-------o---o topic
141 / \
142 o---o---o---*---o---o---o---o---+ master
143------------
144
145This would leave only one merge commit when your topic branch is
146finally ready and merged into the master branch. This merge
147would require you to resolve the conflict, introduced by the
c97038d1 148commits marked with `*`. However, this conflict is often the
8389b52b 149same conflict you resolved when you created the test merge you
0b444cdb 150blew away. 'git rerere' helps you resolve this final
8389b52b
JH
151conflicted merge using the information from your earlier hand
152resolve.
153
0b444cdb 154Running the 'git rerere' command immediately after a conflicted
8389b52b
JH
155automerge records the conflicted working tree files, with the
156usual conflict markers `<<<<<<<`, `=======`, and `>>>>>>>` in
157them. Later, after you are done resolving the conflicts,
0b444cdb 158running 'git rerere' again will record the resolved state of these
8389b52b
JH
159files. Suppose you did this when you created the test merge of
160master into the topic branch.
161
c97038d1 162Next time, after seeing the same conflicted automerge,
0b444cdb 163running 'git rerere' will perform a three-way merge between the
8389b52b 164earlier conflicted automerge, the earlier manual resolution, and
c97038d1 165the current conflicted automerge.
8389b52b 166If this three-way merge resolves cleanly, the result is written
c97038d1 167out to your working tree file, so you do not have to manually
0b444cdb 168resolve it. Note that 'git rerere' leaves the index file alone,
8389b52b 169so you still need to do the final sanity checks with `git diff`
0b444cdb 170(or `git diff -c`) and 'git add' when you are satisfied.
8389b52b 171
0b444cdb
TR
172As a convenience measure, 'git merge' automatically invokes
173'git rerere' upon exiting with a failed automerge and 'git rerere'
c97038d1 174records the hand resolve when it is a new conflict, or reuses the earlier hand
0b444cdb 175resolve when it is not. 'git commit' also invokes 'git rerere'
c97038d1
SB
176when committing a merge result. What this means is that you do
177not have to do anything special yourself (besides enabling
178the rerere.enabled config variable).
8389b52b 179
c97038d1 180In our example, when you do the test merge, the manual
8389b52b 181resolution is recorded, and it will be reused when you do the
c97038d1
SB
182actual merge later with the updated master and topic branch, as long
183as the recorded resolution is still applicable.
8389b52b 184
0b444cdb
TR
185The information 'git rerere' records is also used when running
186'git rebase'. After blowing away the test merge and continuing
8389b52b
JH
187development on the topic branch:
188
189------------
190 o---*---o-------o---o topic
191 /
192 o---o---o---*---o---o---o---o master
193
194 $ git rebase master topic
195
196 o---*---o-------o---o topic
197 /
198 o---o---o---*---o---o---o---o master
199------------
200
c97038d1
SB
201you could run `git rebase master topic`, to bring yourself
202up-to-date before your topic is ready to be sent upstream.
203This would result in falling back to a three-way merge, and it
204would conflict the same way as the test merge you resolved earlier.
0b444cdb 205'git rerere' will be run by 'git rebase' to help you resolve this
8389b52b
JH
206conflict.
207
8389b52b
JH
208GIT
209---
9e1f0a85 210Part of the linkgit:git[1] suite