##// END OF EJS Templates
convert: report cvsps branchpoints sorted
Mads Kiilerich -
r18375:cfbd3302 default
parent child Browse files
Show More
@@ -827,7 +827,8 b' def debugcvsps(ui, *args, **opts):'
827 ui.write(('Tag%s: %s \n' % (['', 's'][len(cs.tags) > 1],
827 ui.write(('Tag%s: %s \n' % (['', 's'][len(cs.tags) > 1],
828 ','.join(cs.tags) or '(none)')))
828 ','.join(cs.tags) or '(none)')))
829 if cs.branchpoints:
829 if cs.branchpoints:
830 ui.write(('Branchpoints: %s \n') % ', '.join(cs.branchpoints))
830 ui.write(('Branchpoints: %s \n') %
831 ', '.join(sorted(cs.branchpoints)))
831 if opts["parents"] and cs.parents:
832 if opts["parents"] and cs.parents:
832 if len(cs.parents) > 1:
833 if len(cs.parents) > 1:
833 ui.write(('Parents: %s\n' %
834 ui.write(('Parents: %s\n' %
@@ -116,7 +116,7 b' return to trunk and merge MYBRANCH1_2'
116 Author: user
116 Author: user
117 Branch: HEAD
117 Branch: HEAD
118 Tag: (none)
118 Tag: (none)
119 Branchpoints: MYBRANCH1_1, MYBRANCH1
119 Branchpoints: MYBRANCH1, MYBRANCH1_1
120 Log:
120 Log:
121 foo.txt
121 foo.txt
122
122
General Comments 0
You need to be logged in to leave comments. Login now