##// END OF EJS Templates
discovery: use stable sort order in --new-branch warning...
Martin Geisler -
r11429:d420ff34 stable
parent child Browse files
Show More
@@ -280,7 +280,7 b' def prepush(repo, remote, force, revs, n'
280 280 remotemap = remote.branchmap()
281 281 newbranches = branches - set(remotemap)
282 282 if newbranches and not newbranch: # new branch requires --new-branch
283 branchnames = ', '.join("%s" % b for b in newbranches)
283 branchnames = ', '.join(sorted(newbranches))
284 284 repo.ui.warn(_("abort: push creates "
285 285 "new remote branches: %s!\n")
286 286 % branchnames)
General Comments 0
You need to be logged in to leave comments. Login now