sapling/eden/scm/tests/test-merge-update-noconflict.t
Durham Goode e1c73204f6 drawdag: use bookmarks instead of tags
Summary:
A future diff will remove tags entirely, so let's move drawdag to be
bookmark based.

Reviewed By: quark-zju

Differential Revision: D18995059

fbshipit-source-id: 70ef67259b37ef9821009d0145aa1e03c09b1309
2019-12-20 16:14:18 -08:00

30 lines
692 B
Perl

#chg-compatible
$ enable amend rebase
$ setconfig experimental.updatecheck=noconflict
Updating w/ noconflict prints the conflicting changes:
$ newrepo
$ hg debugdrawdag <<'EOS'
> c # c/b = foo
> | # c/a = bar
> b # c/z = foo
> | # c/y = bar
> | # b/z = base
> | # b/y = base
> a
> EOS
$ hg up b
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark b)
$ echo "conflict" | tee a b y z
conflict
$ hg up c
abort: 4 conflicting file changes:
a
b
y
z
(commit, shelve, update --clean to discard them, or update --merge to merge them)
[255]