##// END OF EJS Templates
largefiles: upload files in sorted order
Mads Kiilerich -
r18368:de685145 default
parent child Browse files
Show More
@@ -1028,7 +1028,7 b' def getoutgoinglfiles(ui, repo, dest=Non'
1028 files.add(f)
1028 files.add(f)
1029 toupload = toupload.union(
1029 toupload = toupload.union(
1030 set([f for f in files if lfutil.isstandin(f) and f in ctx]))
1030 set([f for f in files if lfutil.isstandin(f) and f in ctx]))
1031 return toupload
1031 return sorted(toupload)
1032
1032
1033 def overrideoutgoing(orig, ui, repo, dest=None, **opts):
1033 def overrideoutgoing(orig, ui, repo, dest=None, **opts):
1034 result = orig(ui, repo, dest, **opts)
1034 result = orig(ui, repo, dest, **opts)
@@ -705,9 +705,9 b' Test that outgoing --large works (with r'
705
705
706 searching for changes
706 searching for changes
707 largefiles to upload:
707 largefiles to upload:
708 large8
708 foo
709 large
709 large
710 foo
710 large8
711
711
712 $ cd ../a
712 $ cd ../a
713
713
General Comments 0
You need to be logged in to leave comments. Login now