tests/test-hg-parseurl.py.out
author Sune Foldager <cryo@cyanite.org>
Sun, 07 Feb 2010 14:29:07 +0100
changeset 10365 d757bc0c7865
parent 8174 29bc5d18714a
child 11322 3d6915f5a2bb
permissions -rw-r--r--
interpret repo#name url syntax as branch instead of revision Previously, the name part of an repo#name url was interpreted as a revision, similar to using the --rev option. Now it is instead looked up as a branch first, and if that succeeds all the heads of the branch will be processed instead of just its tip-most head. If the branch lookup fails, it will be assumed to be an revision as before (e.g. for tags).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10365
d757bc0c7865 interpret repo#name url syntax as branch instead of revision
Sune Foldager <cryo@cyanite.org>
parents: 8174
diff changeset
     1
http://example.com/no/anchor, branches: []
d757bc0c7865 interpret repo#name url syntax as branch instead of revision
Sune Foldager <cryo@cyanite.org>
parents: 8174
diff changeset
     2
http://example.com/an/anchor, branches: ['foo']
d757bc0c7865 interpret repo#name url syntax as branch instead of revision
Sune Foldager <cryo@cyanite.org>
parents: 8174
diff changeset
     3
http://example.com/no/anchor/branches, branches: ['foo']
d757bc0c7865 interpret repo#name url syntax as branch instead of revision
Sune Foldager <cryo@cyanite.org>
parents: 8174
diff changeset
     4
http://example.com/an/anchor/branches, branches: ['foo', 'bar']
d757bc0c7865 interpret repo#name url syntax as branch instead of revision
Sune Foldager <cryo@cyanite.org>
parents: 8174
diff changeset
     5
http://example.com/an/anchor/branches-None, branches: ['foo']