##// END OF EJS Templates
share: pass named arguments...
Gregory Szorc -
r27353:98e59d9e default
parent child Browse files
Show More
@@ -73,7 +73,8 b' def share(ui, source, dest=None, noupdat'
73 the broken clone to reset it to a changeset that still exists.
73 the broken clone to reset it to a changeset that still exists.
74 """
74 """
75
75
76 return hg.share(ui, source, dest, not noupdate, bookmarks)
76 return hg.share(ui, source, dest=dest, update=not noupdate,
77 bookmarks=bookmarks)
77
78
78 @command('unshare', [], '')
79 @command('unshare', [], '')
79 def unshare(ui, repo):
80 def unshare(ui, repo):
General Comments 0
You need to be logged in to leave comments. Login now