annotate en/undo.tex @ 124:c9aad709bd3a

Document the backout command.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 26 Dec 2006 13:08:20 -0800
parents f954c6f6eaa1
children 8f8a1ad9627a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
1 \chapter{Finding and fixing your mistakes}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
2 \label{chap:undo}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
3
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
4 To err might be human, but to really handle the consequences well
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
5 takes a top-notch revision control system. In this chapter, we'll
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
6 discuss some of the techniques you can use when you find that a
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
7 problem has crept into your project. Mercurial has some highly
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
8 capable features that will help you to isolate the sources of
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
9 problems, and to handle them appropriately.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
10
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
11 \section{Erasing local history}
121
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
12
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
13 \subsection{The accidental commit}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
14
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
15 I have the occasional but persistent problem of typing rather more
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
16 quickly than I can think, which sometimes results in me committing a
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
17 changeset that is either incomplete or plain wrong. In my case, the
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
18 usual kind of incomplete changeset is one in which I've created a new
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
19 source file, but forgotten to \hgcmd{add} it. A ``plain wrong''
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
20 changeset is not as common, but no less annoying.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
21
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
22 \subsection{Rolling back a transaction}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
23
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
24 In section~\ref{sec:concepts:txn}, I mentioned that Mercurial treats
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
25 each modification of a repository as a \emph{transaction}. Every time
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
26 you commit a changeset or pull changes from another repository,
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
27 Mercurial remembers what you did. You can undo, or \emph{roll back},
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
28 exactly one of these actions using the \hgcmd{rollback} command.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
29
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
30 Here's a mistake that I often find myself making: committing a change
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
31 in which I've created a new file, but forgotten to \hgcmd{add} it.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
32 \interaction{rollback.commit}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
33 Looking at the output of \hgcmd{status} after the commit immediately
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
34 confirms the error.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
35 \interaction{rollback.status}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
36 The commit captured the changes to the file \filename{a}, but not the
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
37 new file \filename{b}. If I were to push this changeset to a
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
38 repository that I shared with a colleague, the chances are high that
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
39 something in \filename{a} would refer to \filename{b}, which would not
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
40 be present in their repository when they pulled my changes. I would
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
41 thus become the object of some indignation.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
42
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
43 However, luck is with me---I've caught my error before I pushed the
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
44 changeset. I use the \hgcmd{rollback} command, and Mercurial makes
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
45 that last changeset vanish.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
46 \interaction{rollback.rollback}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
47 Notice that the changeset is no longer present in the repository's
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
48 history, and the working directory once again thinks that the file
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
49 \filename{a} is modified. The commit and rollback have left the
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
50 working directory exactly as it was prior to the commit; the changeset
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
51 has been completely erased. I can now safely \hgcmd{add} the file
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
52 \filename{b}, and rerun my commit.
121
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
53 \interaction{rollback.add}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
54
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
55 \subsection{The erroneous pull}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
56
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
57 It's common practice with Mercurial to maintain separate development
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
58 branches of a project in different repositories. Your development
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
59 team might have one shared repository for your project's ``0.9''
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
60 release, and another, containing different changes, for the ``1.0''
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
61 release.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
62
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
63 Given this, you can imagine that the consequences could be messy if
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
64 you had a local ``0.9'' repository, and accidentally pulled changes
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
65 from the shared ``1.0'' repository into it. At worst, you could be
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
66 paying insufficient attention, and push those changes into the shared
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
67 ``0.9'' tree, confusing your entire team (but don't worry, we'll
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
68 return to this horror scenario later). However, it's more likely that
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
69 you'll notice immediately, because Mercurial will display the URL it's
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
70 pulling from, or you will see it pull a suspiciously large number of
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
71 changes into the repository.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
72
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
73 The \hgcmd{rollback} command will work nicely to expunge all of the
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
74 changesets that you just pulled. Mercurial groups all changes from
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
75 one \hgcmd{pull} into a single transaction, so one \hgcmd{rollback} is
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
76 all you need to undo this mistake.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
77
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
78 \subsection{Rolling back is useless once you've pushed}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
79
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
80 The value of the \hgcmd{rollback} command drops to zero once you've
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
81 pushed your changes to another repository. Rolling back a change
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
82 makes it disappear entirely, but \emph{only} in the repository in
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
83 which you perform the \hgcmd{rollback}. Because a rollback eliminates
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
84 history, there's no way for the disappearance of a change to propagate
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
85 between repositories.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
86
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
87 If you've pushed a change to another repository---particularly if it's
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
88 a shared repository---it has essentially ``escaped into the wild,''
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
89 and you'll have to recover from your mistake in a different way. What
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
90 will happen if you push a changeset somewhere, then roll it back, then
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
91 pull from the repository you pushed to, is that the changeset will
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
92 reappear in your repository.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
93
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
94 (If you absolutely know for sure that the change you want to roll back
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
95 is the most recent change in the repository that you pushed to,
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
96 \emph{and} you know that nobody else could have pulled it from that
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
97 repository, you can roll back the changeset there, too, but you really
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
98 should really not rely on this working reliably. If you do this,
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
99 sooner or later a change really will make it into a repository that
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
100 you don't directly control (or have forgotten about), and come back to
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
101 bite you.)
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
102
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
103 \subsection{You can only roll back once}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
104
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
105 Mercurial stores exactly one transaction in its transaction log; that
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
106 transaction is the most recent one that occurred in the repository.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
107 This means that you can only roll back one transaction. If you expect
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
108 to be able to roll back one transaction, then its predecessor, this is
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
109 not the behaviour you will get.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
110 \interaction{rollback.twice}
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
111 Once you've rolled back one transaction in a repository, you can't
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
112 roll back again in that repository until you perform another commit or
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
113 pull.
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
114
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
115 \section{Reverting the mistaken change}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
116
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
117 If you make a modification to a file, and decide that you really
124
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
118 didn't want to change the file at all, and you haven't yet committed
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
119 your changes, the \hgcmd{revert} command is the one you'll need. It
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
120 looks at the changeset that's the parent of the working directory, and
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
121 restores the contents of the file to their state as of that changeset.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
122 (That's a long-winded way of saying that, in the normal case, it
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
123 undoes your modifications.)
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
124
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
125 Let's illustrate how the \hgcmd{revert} command works with yet another
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
126 small example. We'll begin by modifying a file that Mercurial is
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
127 already tracking.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
128 \interaction{daily.revert.modify}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
129 If we don't want that change, we can simply \hgcmd{revert} the file.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
130 \interaction{daily.revert.unmodify}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
131 The \hgcmd{revert} command provides us with an extra degree of safety
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
132 by saving our modified file with a \filename{.orig} extension.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
133 \interaction{daily.revert.status}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
134
124
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
135 Here is a summary of the cases that the \hgcmd{revert} command can
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
136 deal with. We will describe each of these in more detail in the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
137 section that follows.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
138 \begin{itemize}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
139 \item If you modify a file, it will restore the file to its unmodified
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
140 state.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
141 \item If you \hgcmd{add} a file, it will undo the ``added'' state of
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
142 the file, but leave the file itself untouched.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
143 \item If you delete a file without telling Mercurial, it will restore
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
144 the file to its unmodified contents.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
145 \item If you use the \hgcmd{remove} command to remove a file, it will
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
146 undo the ``removed'' state of the file, and restore the file to its
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
147 unmodified contents.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
148 \end{itemize}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
149
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
150 \subsection{File management errors}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
151 \label{sec:undo:mgmt}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
152
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
153 The \hgcmd{revert} command is useful for more than just modified
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
154 files. It lets you reverse the results of all of Mercurial's file
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
155 management commands---\hgcmd{add}, \hgcmd{remove}, and so on.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
156
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
157 If you \hgcmd{add} a file, then decide that in fact you don't want
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
158 Mercurial to track it, use \hgcmd{revert} to undo the add. Don't
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
159 worry; Mercurial will not modify the file in any way. It will just
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
160 ``unmark'' the file.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
161 \interaction{daily.revert.add}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
162
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
163 Similarly, if you ask Mercurial to \hgcmd{remove} a file, you can use
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
164 \hgcmd{revert} to restore it to the contents it had as of the parent
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
165 of the working directory.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
166 \interaction{daily.revert.remove}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
167 This works just as well for a file that you deleted by hand, without
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
168 telling Mercurial (recall that in Mercurial terminology, this kind of
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
169 file is called ``missing'').
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
170 \interaction{daily.revert.missing}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
171
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
172 If you revert a \hgcmd{copy}, the copied-to file remains in your
123
f954c6f6eaa1 Progress.
Bryan O'Sullivan <bos@serpentine.com>
parents: 122
diff changeset
173 working directory afterwards, untracked. Since a copy doesn't affect
f954c6f6eaa1 Progress.
Bryan O'Sullivan <bos@serpentine.com>
parents: 122
diff changeset
174 the copied-from file in any way, Mercurial doesn't do anything with
f954c6f6eaa1 Progress.
Bryan O'Sullivan <bos@serpentine.com>
parents: 122
diff changeset
175 the copied-from file.
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
176 \interaction{daily.revert.copy}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
177
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
178 \subsubsection{A slightly special case: reverting a rename}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
179
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
180 If you \hgcmd{rename} a file, there is one small detail that
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
181 you should remember. When you \hgcmd{revert} a rename, it's not
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
182 enough to provide the name of the renamed-to file, as you can see
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
183 here.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
184 \interaction{daily.revert.rename}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
185 As you can see from the output of \hgcmd{status}, the renamed-to file
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
186 is no longer identified as added, but the renamed-\emph{from} file is
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
187 still removed! This is counter-intuitive (at least to me), but at
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
188 least it's easy to deal with.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
189 \interaction{daily.revert.rename-orig}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
190 So remember, to revert a \hgcmd{rename}, you must provide \emph{both}
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
191 the source and destination names.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
192
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
193 (By the way, if you rename a file, then modify the renamed-to file,
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
194 then revert both components of the rename, when Mercurial restores the
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
195 file that was removed as part of the rename, it will be unmodified.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
196 If you need the modifications in the renamed-to file to show up in the
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
197 renamed-from file, don't forget to copy them over.)
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
198
123
f954c6f6eaa1 Progress.
Bryan O'Sullivan <bos@serpentine.com>
parents: 122
diff changeset
199 These fiddly aspects of reverting a rename arguably constitute a small
122
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
200 bug in Mercurial.
3af28630fe8c How to goodbye depression by reverting one thousand times daily.
Bryan O'Sullivan <bos@serpentine.com>
parents: 121
diff changeset
201
124
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
202 \section{Dealing with committed changes}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
203
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
204 Consider a case where you have committed a change $a$, and another
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
205 change $b$ on top of it; you then realise that change $a$ was
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
206 incorrect. Mercurial lets you ``back out'' an entire changeset
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
207 automatically, and building blocks that let you reverse part of a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
208 changeset by hand.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
209
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
210 \subsection{Backing out a changeset}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
211
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
212 The \hgcmd{backout} command lets you ``undo'' the effects of an entire
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
213 changeset in an automated fashion. Because Mercurial's history is
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
214 immutable, this command \emph{does not} get rid of the changeset you
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
215 want to undo. Instead, it creates a new changeset that
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
216 \emph{reverses} the effect of the to-be-undone changeset.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
217
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
218 The operation of the \hgcmd{backout} command is a little intricate, so
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
219 let's illustrate it with some examples. First, we'll create a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
220 repository with some simple changes.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
221 \interaction{backout.init}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
222
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
223 The \hgcmd{backout} command takes a single changeset ID as its
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
224 argument; this is the changeset to back out. Normally,
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
225 \hgcmd{backout} will drop you into a text editor to write a commit
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
226 message, so you can record why you're backing the change out. In this
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
227 example, we provide a commit message on the command line using the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
228 \hgopt{backout}{-m} option.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
229
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
230 \subsection{Backing out the tip changeset}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
231
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
232 We're going to start by backing out the last changeset we committed.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
233 \interaction{backout.simple}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
234 You can see that the second line from \filename{myfile} is no longer
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
235 present. Taking a look at the output of \hgcmd{log} gives us an idea
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
236 of what the \hgcmd{backout} command has done.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
237 \interaction{backout.simple.log}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
238 Notice that the new changeset that \hgcmd{backout} has created is a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
239 child of the changeset we backed out. It's easier to see this in
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
240 figure~\ref{fig:undo:backout}, which presents a graphical view of the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
241 change history. As you can see, the history is nice and linear.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
242
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
243 \begin{figure}[htb]
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
244 \centering
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
245 \grafix{undo-simple}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
246 \caption{Backing out a change using the \hgcmd{backout} command}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
247 \label{fig:undo:backout}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
248 \end{figure}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
249
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
250 \subsection{Backing out a non-tip change}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
251
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
252 If you want to back out a change other than the last one you
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
253 committed, pass the \hgopt{backout}{--merge} option to the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
254 \hgcmd{backout} command.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
255 \interaction{backout.non-tip.clone}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
256 This makes backing out any changeset a ``one-shot'' operation that's
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
257 usually simple and fast.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
258 \interaction{backout.non-tip.backout}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
259
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
260 If you take a look at the contents of \filename{myfile} after the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
261 backout finishes, you'll see that the first and third changes are
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
262 present, but not the second.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
263 \interaction{backout.non-tip.cat}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
264
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
265 As the graphical history in figure~\ref{fig:undo:backout-non-tip}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
266 illustrates, Mercurial actually commits \emph{two} changes in this
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
267 kind of situation (the box-shaped nodes are the ones that Mercurial
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
268 commits automatically). Before Mercurial begins the backout process,
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
269 it first remembers what the current parent of the working directory
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
270 is. It then backs out the target changeset, and commits that as a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
271 changeset. Finally, it merges back to the previous parent of the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
272 working directory, and commits the result of the merge.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
273
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
274 \begin{figure}[htb]
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
275 \centering
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
276 \grafix{undo-non-tip}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
277 \caption{Automated backout of a non-tip change using the \hgcmd{backout} command}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
278 \label{fig:undo:backout-non-tip}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
279 \end{figure}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
280
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
281 The result is that you end up ``back where you were'', only with some
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
282 extra history that undoes the effect of the changeset you wanted to
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
283 back out.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
284
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
285 \subsubsection{Always use the \hgopt{backout}{--merge} option}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
286
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
287 In fact, since the \hgopt{backout}{--merge} option will do the ``right
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
288 thing'' whether or not the changeset you're backing out is the tip
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
289 (i.e.~it won't try to merge if it's backing out the tip, since there's
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
290 no need), you should \emph{always} use this option when you run the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
291 \hgcmd{backout} command.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
292
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
293 \subsection{Gaining more control of the backout process}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
294
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
295 While I've recommended that you always use the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
296 \hgopt{backout}{--merge} option when backing out a change, the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
297 \hgcmd{backout} command lets you decide how to merge a backout
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
298 changeset. Taking control of the backout process by hand is something
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
299 you will rarely need to do, but it can be useful to understand what
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
300 the \hgcmd{backout} command is doing for you automatically. To
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
301 illustrate this, let's clone our first repository, but omit the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
302 backout change that it contains.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
303
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
304 \interaction{backout.manual.clone}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
305 As with our earlier example, We'll commit a third changeset, then back
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
306 out its parent, and see what happens.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
307 \interaction{backout.manual.backout}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
308 Our new changeset is again a descendant of the changeset we backout
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
309 out; it's thus a new head, \emph{not} a descendant of the changeset
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
310 that was the tip. The \hgcmd{backout} command was quite explicit in
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
311 telling us this.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
312 \interaction{backout.manual.log}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
313
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
314 Again, it's easier to see what has happened by looking at a graph of
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
315 the revision history, in figure~\ref{fig:undo:backout-manual}. This
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
316 makes it clear that when we use \hgcmd{backout} to back out a change
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
317 other than the tip, Mercurial adds a new head to the repository (the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
318 change it committed is box-shaped).
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
319
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
320 \begin{figure}[htb]
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
321 \centering
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
322 \grafix{undo-manual}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
323 \caption{Backing out a change using the \hgcmd{backout} command}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
324 \label{fig:undo:backout-manual}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
325 \end{figure}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
326
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
327 After the \hgcmd{backout} command has completed, it leaves the new
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
328 ``backout'' changeset as the parent of the working directory.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
329 \interaction{backout.manual.parents}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
330 Now we have two isolated sets of changes.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
331 \interaction{backout.manual.heads}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
332
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
333 Let's think about what we expect to see as the contents of
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
334 \filename{myfile} now. The first change should be present, because
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
335 we've never backed it out. The second change should be missing, as
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
336 that's the change we backed out. Since the history graph shows the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
337 third change as a separate head, we \emph{don't} expect to see the
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
338 third change present in \filename{myfile}.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
339 \interaction{backout.manual.cat}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
340 To get the third change back into the file, we just do a normal merge
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
341 of our two heads.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
342 \interaction{backout.manual.merge}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
343 Afterwards, the graphical history of our repository looks like
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
344 figure~\ref{fig:undo:backout-manual-merge}.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
345
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
346 \begin{figure}[htb]
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
347 \centering
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
348 \grafix{undo-manual-merge}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
349 \caption{Manually merging a backout change}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
350 \label{fig:undo:backout-manual-merge}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
351 \end{figure}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
352
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
353 \subsection{A rationale}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
354
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
355 Here's a brief description of how the \hgcmd{backout} command works.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
356 \begin{enumerate}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
357 \item It ensures that the working directory is ``clean'', i.e.~that
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
358 the output of \hgcmd{status} would be empty.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
359 \item It remembers the current parent of the working directory. Let's
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
360 call this changeset \texttt{orig}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
361 \item It does the equivalent of a \hgcmd{update} to sync the working
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
362 directory to the changeset you want to back out. Let's call this
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
363 changeset \texttt{backout}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
364 \item It finds the parent of that changeset. Let's call that
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
365 changeset \texttt{parent}.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
366 \item For each file that the \texttt{backout} changeset affected, it
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
367 does the equivalent of a \hgcmdargs{revert}{-r parent} on that file,
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
368 to restore it to the contents it had before that changeset was
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
369 committed.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
370 \item It commits the result as a new changeset. This changeset has
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
371 \texttt{backout} as its parent.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
372 \item If you specify \hgopt{backout}{--merge} on the command line, it
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
373 merges with \texttt{orig}, and commits the result of the merge.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
374 \end{enumerate}
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
375
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
376 An alternative way to implement the \hgcmd{backout} command would be
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
377 to \hgcmd{export} the to-be-backed-out changeset as a diff, then use
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
378 the \cmdopt{patch}{--reverse} option to the \command{patch} command to
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
379 reverse the effect of the change without fiddling with the working
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
380 directory. This sounds much simpler, but it would not work nearly as
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
381 well.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
382
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
383 The reason that \hgcmd{backout} does an update, a commit, a merge, and
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
384 another commit is to give the merge machinery the best chance to do a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
385 good job when dealing with all the changes \emph{between} the change
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
386 you're backing out and the current tip.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
387
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
388 If you're backing out a changeset that's~100 revisions back in your
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
389 project's history, the chances that the \command{patch} command will
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
390 be able to apply a reverse diff cleanly are not good, because
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
391 intervening changes are likely to have ``broken the context'' that
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
392 \command{patch} uses to determine whether it can apply a patch (if
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
393 this sounds like gibberish, see \section{sec:mq:patch} for a
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
394 discussion of the \command{patch} command). Also, Mercurial's merge
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
395 machinery will handle files and directories being renamed, permission
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
396 changes, and modifications to binary files, none of which
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
397 \command{patch} can deal with.
c9aad709bd3a Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents: 123
diff changeset
398
121
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
399 %%% Local Variables:
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
400 %%% mode: latex
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
401 %%% TeX-master: "00book"
9094c9fda8ec Start chapter on error recovery.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
402 %%% End: