##// END OF EJS Templates
merge with stable
Martin von Zweigbergk -
r45537:3fadbdc4 merge default
parent child Browse files
Show More
@@ -5,6 +5,15 b''
5
5
6 '''share a common history between several working directories
6 '''share a common history between several working directories
7
7
8 The share extension introduces a new command :hg:`share` to create a new
9 working directory. This is similar to :hg:`clone`, but doesn't involve
10 copying or linking the storage of the repository. This allows working on
11 different branches or changes in parallel without the associated cost in
12 terms of disk space.
13
14 Note: destructive operations or extensions like :hg:`rollback` should be
15 used with care as they can result in confusing problems.
16
8 Automatic Pooled Storage for Clones
17 Automatic Pooled Storage for Clones
9 -----------------------------------
18 -----------------------------------
10
19
@@ -635,7 +635,9 b' else:'
635 def _do_wait():
635 def _do_wait():
636 os.waitpid(pid, 0)
636 os.waitpid(pid, 0)
637
637
638 threading.Thread(target=_do_wait, daemon=True).start()
638 t = threading.Thread(target=_do_wait)
639 t.daemon = True
640 t.start()
639 return
641 return
640 # Parent process
642 # Parent process
641 (_pid, status) = os.waitpid(pid, 0)
643 (_pid, status) = os.waitpid(pid, 0)
General Comments 0
You need to be logged in to leave comments. Login now