209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
+
+
+
+
+
+
|
Such a label is useful, for example, in computing all diffs for a single
branch. The following example will show all changes in the hypothetical
branch "xyzzy":
<blockquote>
fossil diff --from root:xyzzy --to xyzzy
</blockquote>
A branch name that begins with the "<tt>merge-in:</tt>" prefix refers not
to the root of the branch, but to the most recent merge-in for that branch
from its parent. The most recent merge-in is the version to diff the branch
against in order to see all changes in just the branch itself, omitting
any changes that have already been merged in from the parent branch.
<h2>Special Tags</h2>
The tag "tip" means the most recent check-in. The "tip" tag is roughly
equivalent to the timestamp tag "5000-01-01".
|