##// END OF EJS Templates
pull: return 1 when no changes found (BC)...
pull: return 1 when no changes found (BC) Currently we have the following return codes if nothing is found: commit incoming outgoing pull push intended 1 1 1 1 1 documented 1 1 1 0 1 actual 1 1 1 0 1 This makes pull agree with the rest of the table and makes it easy to detect "nothing was pulled" in scripts.

File last commit:

r15447:9910f60a default
r16039:093b75c7 stable
Show More
test-issue1089.t
25 lines | 311 B | text/troff | Tads3Lexer
Matt Mackall
tests: fix a bunch of pointless #s in unified tests
r12328 http://mercurial.selenic.com/bts/issue1089
Adrian Buehlmann
tests: unify test-issue*
r12195
$ hg init
$ mkdir a
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 removing a/b (glob)
Adrian Buehlmann
tests: unify test-issue*
r12195 $ hg ci -m m a
$ mkdir a b
$ echo a > a/b
$ hg ci -Am m
adding a/b
$ hg rm a
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 removing a/b (glob)
Adrian Buehlmann
tests: unify test-issue*
r12195 $ cd b
Relative delete:
$ hg ci -m m ../a