##// END OF EJS Templates
share: wrap docstrings at 70 characters
Martin Geisler -
r9273:4b8b0c12 default
parent child Browse files
Show More
@@ -11,11 +11,11 b' from mercurial import hg, commands'
11 def share(ui, source, dest=None, noupdate=False):
11 def share(ui, source, dest=None, noupdate=False):
12 """create a new shared repository (experimental)
12 """create a new shared repository (experimental)
13
13
14 Initialize a new repository and working directory that shares its history
14 Initialize a new repository and working directory that shares its
15 with another repository.
15 history with another repository.
16
16
17 NOTE: actions that change history such as rollback or moving the source
17 NOTE: actions that change history such as rollback or moving the
18 may confuse sharers.
18 source may confuse sharers.
19 """
19 """
20
20
21 return hg.share(ui, source, dest, not noupdate)
21 return hg.share(ui, source, dest, not noupdate)
General Comments 0
You need to be logged in to leave comments. Login now