summaryrefslogtreecommitdiff
path: root/doc/git-annex-adjust.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-03-29 11:33:26 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-03-29 11:39:43 -0400
commit4e12a0146f3d76282b2f406f4fcb377450085447 (patch)
tree94247bccb01634440af74373143d765c24d926af /doc/git-annex-adjust.mdwn
parent34018982ccb3e78b71446b7cf91e6f45ef644b48 (diff)
docs for git-annex adjust
Diffstat (limited to 'doc/git-annex-adjust.mdwn')
-rw-r--r--doc/git-annex-adjust.mdwn50
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/git-annex-adjust.mdwn b/doc/git-annex-adjust.mdwn
new file mode 100644
index 000000000..551eabe01
--- /dev/null
+++ b/doc/git-annex-adjust.mdwn
@@ -0,0 +1,50 @@
+# NAME
+
+git-annex adjust - enter an adjusted branch
+
+# SYNOPSIS
+
+git annex adjust --unlock`
+
+# DESCRIPTION
+
+Enters an adjusted form of the current branch. The annexed files will
+be treated differently. For example with --unlock all annexed files will
+be unlocked.
+
+The adjusted branch will have a name like "adjusted/master(unlocked)".
+Since it's a regular git branch, you can use `git checkout` to switch
+back to the original branch at any time.
+
+While in the adjusted branch, you can use git-annex and git commands as
+usual. Any commits that you make will initially only be made to the
+adjusted branch.
+
+To propigate changes from the adjusted branch back to the original branch,
+and to other repositories, as well as to merge in changes from other
+repositories, use `git annex sync`.
+
+This command can only be used in a v6 git-annex repository.
+
+# OPTIONS
+
+* `--unlock`
+
+ Unlock all annexed files in the adjusted branch. This allows
+ annexed files to be modified.
+
+# SEE ALSO
+
+[[git-annex]](1)
+
+[[git-annex-unlock]](1)
+
+[[git-annex-upgrade]](1)
+
+[[git-annex-sync]](1)
+
+# AUTHOR
+
+Joey Hess <id@joeyh.name>
+
+Warning: Automatically converted into a man page by mdwn2man. Edit with care.