hgext/share.py
branchstable
changeset 44979 2fd8a8c11273
parent 43506 9f70512ae2cf
child 45942 89a2afe31e82
--- a/hgext/share.py	Thu Jun 25 00:06:23 2020 -0700
+++ b/hgext/share.py	Tue Jun 23 16:07:18 2020 +0200
@@ -5,6 +5,15 @@
 
 '''share a common history between several working directories
 
+The share extension introduces a new command :hg:`share` to create a new
+working directory. This is similar to :hg:`clone`, but doesn't involve
+copying or linking the storage of the repository. This allows working on
+different branches or changes in parallel without the associated cost in
+terms of disk space.
+
+Note: destructive operations or extensions like :hg:`rollback` should be
+used with care as they can result in confusing problems.
+
 Automatic Pooled Storage for Clones
 -----------------------------------