blob: 64715c17da6c313a1cec4c353300eb0faee2313b [file] [log] [blame]
Junio C Hamano40f2f8d2006-02-07 08:04:391git-rerere(1)
2=============
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-rerere - Reuse recorded resolution of conflicted merges
Junio C Hamano40f2f8d2006-02-07 08:04:397
8SYNOPSIS
9--------
Junio C Hamanoba4b9282008-07-06 05:20:3110'git rerere' ['clear'|'diff'|'status'|'gc']
Junio C Hamano40f2f8d2006-02-07 08:04:3911
12DESCRIPTION
13-----------
14
15In a workflow that employs relatively long lived topic branches,
16the developer sometimes needs to resolve the same conflict over
17and over again until the topic branches are done (either merged
18to the "release" branch, or sent out and accepted upstream).
19
20This command helps this process by recording conflicted
21automerge results and corresponding hand-resolve results on the
22initial manual merge, and later by noticing the same automerge
23results and applying the previously recorded hand resolution.
24
Junio C Hamano0e47b232008-01-15 08:31:1025[NOTE]
26You need to set the configuration variable rerere.enabled to
27enable this command.
28
Junio C Hamanoe7935c42006-12-13 21:32:1729
30COMMANDS
31--------
32
Junio C Hamanoba4b9282008-07-06 05:20:3133Normally, 'git-rerere' is run without arguments or user-intervention.
Junio C Hamanoe7935c42006-12-13 21:32:1734However, 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
Junio C Hamanoccc2f762008-07-24 04:03:3340aborted. Calling 'git-am [--skip|--abort]' or 'git-rebase [--skip|--abort]'
Junio C Hamanofce7c7e2008-07-02 03:06:3841will automatically invoke this command.
Junio C Hamanoe7935c42006-12-13 21:32:1742
43'diff'::
44
45This displays diffs for the current state of the resolution. It is
46useful for tracking what has changed while the user is resolving
47conflicts. Additional arguments are passed directly to the system
Junio C Hamanoba4b9282008-07-06 05:20:3148'diff' command installed in PATH.
Junio C Hamanoe7935c42006-12-13 21:32:1749
50'status'::
51
Junio C Hamanoba4b9282008-07-06 05:20:3152Like 'diff', but this only prints the filenames that will be tracked
Junio C Hamanoe7935c42006-12-13 21:32:1753for resolutions.
54
55'gc'::
56
57This command is used to prune records of conflicted merge that
Junio C Hamano74640642006-12-27 10:59:5558occurred long time ago. By default, conflicts older than 15
59days that you have not recorded their resolution, and conflicts
60older than 60 days, are pruned. These are controlled with
61`gc.rerereunresolved` and `gc.rerereresolved` configuration
62variables.
Junio C Hamanoe7935c42006-12-13 21:32:1763
64
Junio C Hamano40f2f8d2006-02-07 08:04:3965DISCUSSION
66----------
67
68When your topic branch modifies overlapping area that your
69master branch (or upstream) touched since your topic branch
70forked from it, you may want to test it with the latest master,
71even before your topic branch is ready to be pushed upstream:
72
73------------
74 o---*---o topic
75 /
76 o---o---o---*---o---o master
77------------
78
79For such a test, you need to merge master and topic somehow.
80One way to do it is to pull master into the topic branch:
81
82------------
83$ git checkout topic
Junio C Hamanoedd2b0a2007-01-15 06:12:4584$ git merge master
Junio C Hamano40f2f8d2006-02-07 08:04:3985
86 o---*---o---+ topic
87 / /
88 o---o---o---*---o---o master
89------------
90
91The commits marked with `*` touch the same area in the same
92file; you need to resolve the conflicts when creating the commit
Junio C Hamanofaa1e502008-08-10 03:55:5893marked with `{plus}`. Then you can test the result to make sure your
Junio C Hamano40f2f8d2006-02-07 08:04:3994work-in-progress still works with what is in the latest master.
95
96After this test merge, there are two ways to continue your work
97on the topic. The easiest is to build on top of the test merge
Junio C Hamanofaa1e502008-08-10 03:55:5898commit `{plus}`, and when your work in the topic branch is finally
Junio C Hamano40f2f8d2006-02-07 08:04:3999ready, pull the topic branch into master, and/or ask the
100upstream to pull from you. By that time, however, the master or
Junio C Hamanofaa1e502008-08-10 03:55:58101the upstream might have been advanced since the test merge `{plus}`,
Junio C Hamano40f2f8d2006-02-07 08:04:39102in which case the final commit graph would look like this:
103
104------------
105$ git checkout topic
Junio C Hamanoedd2b0a2007-01-15 06:12:45106$ git merge master
Junio C Hamano40f2f8d2006-02-07 08:04:39107$ ... work on both topic and master branches
108$ git checkout master
Junio C Hamanoedd2b0a2007-01-15 06:12:45109$ git merge topic
Junio C Hamano40f2f8d2006-02-07 08:04:39110
111 o---*---o---+---o---o topic
112 / / \
113 o---o---o---*---o---o---o---o---+ master
114------------
115
116When your topic branch is long-lived, however, your topic branch
117would end up having many such "Merge from master" commits on it,
118which would unnecessarily clutter the development history.
119Readers of the Linux kernel mailing list may remember that Linus
120complained about such too frequent test merges when a subsystem
121maintainer asked to pull from a branch full of "useless merges".
122
123As an alternative, to keep the topic branch clean of test
124merges, you could blow away the test merge, and keep building on
125top of the tip before the test merge:
126
127------------
128$ git checkout topic
Junio C Hamanoedd2b0a2007-01-15 06:12:45129$ git merge master
Junio C Hamano40f2f8d2006-02-07 08:04:39130$ git reset --hard HEAD^ ;# rewind the test merge
131$ ... work on both topic and master branches
132$ git checkout master
Junio C Hamanoedd2b0a2007-01-15 06:12:45133$ git merge topic
Junio C Hamano40f2f8d2006-02-07 08:04:39134
135 o---*---o-------o---o topic
136 / \
137 o---o---o---*---o---o---o---o---+ master
138------------
139
140This would leave only one merge commit when your topic branch is
141finally ready and merged into the master branch. This merge
142would require you to resolve the conflict, introduced by the
143commits marked with `*`. However, often this conflict is the
144same conflict you resolved when you created the test merge you
Junio C Hamanoba4b9282008-07-06 05:20:31145blew away. 'git-rerere' command helps you to resolve this final
Junio C Hamano40f2f8d2006-02-07 08:04:39146conflicted merge using the information from your earlier hand
147resolve.
148
Junio C Hamanoba4b9282008-07-06 05:20:31149Running the 'git-rerere' command immediately after a conflicted
Junio C Hamano40f2f8d2006-02-07 08:04:39150automerge records the conflicted working tree files, with the
151usual conflict markers `<<<<<<<`, `=======`, and `>>>>>>>` in
152them. Later, after you are done resolving the conflicts,
Junio C Hamanoba4b9282008-07-06 05:20:31153running 'git-rerere' again records the resolved state of these
Junio C Hamano40f2f8d2006-02-07 08:04:39154files. Suppose you did this when you created the test merge of
155master into the topic branch.
156
Junio C Hamanoba4b9282008-07-06 05:20:31157Next time, running 'git-rerere' after seeing a conflicted
Junio C Hamano40f2f8d2006-02-07 08:04:39158automerge, if the conflict is the same as the earlier one
159recorded, it is noticed and a three-way merge between the
160earlier conflicted automerge, the earlier manual resolution, and
161the current conflicted automerge is performed by the command.
162If this three-way merge resolves cleanly, the result is written
163out to your working tree file, so you would not have to manually
Junio C Hamanoba4b9282008-07-06 05:20:31164resolve it. Note that 'git-rerere' leaves the index file alone,
Junio C Hamano40f2f8d2006-02-07 08:04:39165so you still need to do the final sanity checks with `git diff`
Junio C Hamanoba4b9282008-07-06 05:20:31166(or `git diff -c`) and 'git-add' when you are satisfied.
Junio C Hamano40f2f8d2006-02-07 08:04:39167
Junio C Hamanoba4b9282008-07-06 05:20:31168As a convenience measure, 'git-merge' automatically invokes
169'git-rerere' when it exits with a failed automerge, which
Junio C Hamano40f2f8d2006-02-07 08:04:39170records it if it is a new conflict, or reuses the earlier hand
Junio C Hamanoba4b9282008-07-06 05:20:31171resolve when it is not. 'git-commit' also invokes 'git-rerere'
Junio C Hamano40f2f8d2006-02-07 08:04:39172when recording a merge result. What this means is that you do
173not have to do anything special yourself (Note: you still have
Junio C Hamano7a4a2832007-07-07 21:53:22174to set the config variable rerere.enabled to enable this command).
Junio C Hamano40f2f8d2006-02-07 08:04:39175
176In our example, when you did the test merge, the manual
177resolution is recorded, and it will be reused when you do the
178actual merge later with updated master and topic branch, as long
179as the earlier resolution is still applicable.
180
Junio C Hamanoba4b9282008-07-06 05:20:31181The information 'git-rerere' records is also used when running
182'git-rebase'. After blowing away the test merge and continuing
Junio C Hamano40f2f8d2006-02-07 08:04:39183development on the topic branch:
184
185------------
186 o---*---o-------o---o topic
187 /
188 o---o---o---*---o---o---o---o master
189
190$ git rebase master topic
191
192 o---*---o-------o---o topic
193 /
194 o---o---o---*---o---o---o---o master
195------------
196
197you could run `git rebase master topic`, to keep yourself
198up-to-date even before your topic is ready to be sent upstream.
199This would result in falling back to three-way merge, and it
200would conflict the same way the test merge you resolved earlier.
Junio C Hamanoba4b9282008-07-06 05:20:31201'git-rerere' is run by 'git-rebase' to help you resolve this
Junio C Hamano40f2f8d2006-02-07 08:04:39202conflict.
203
204
205Author
206------
Junio C Hamano0868a302008-07-22 09:20:44207Written by Junio C Hamano <gitster@pobox.com>
Junio C Hamano40f2f8d2006-02-07 08:04:39208
209GIT
210---
Junio C Hamanof7c042d2008-06-06 22:50:53211Part of the linkgit:git[1] suite