##// END OF EJS Templates
share: wrapped docstrings at 78 characters
Martin Geisler -
r9075:03c24627 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
14 Initialize a new repository and working directory that shares its history
15 history with another repository.
15 with another repository.
16
16
17 NOTE: actions that change history such as rollback or moving the
17 NOTE: actions that change history such as rollback or moving the source
18 source may confuse sharers.
18 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