summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-23 12:41:13 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-23 12:41:13 -0400
commit5a91543be33719d6da7b53c4c449be8f75481375 (patch)
treea11ea030083c1989b723ac2ff54c8aabc7c3a331
parent2fbbbd34bcf8e925f84d96510eb063bdfbfe3f9b (diff)
update
-rw-r--r--doc/git-annex.mdwn17
1 files changed, 7 insertions, 10 deletions
diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn
index e67d9092c..522be7570 100644
--- a/doc/git-annex.mdwn
+++ b/doc/git-annex.mdwn
@@ -48,11 +48,11 @@ content from the key-value store.
add iso/Debian_5.0.iso ok
# git commit -a -m "saving Debian CD for later"
- # git annex drop iso
- drop iso/Debian_5.0.iso ok
+ # git annex drop iso/Debian_4.0.iso
+ drop iso/Debian_4.0.iso ok
# git commit -a -m "freed up space"
- # git annex move video --to=usbdrive
+ # git annex move iso --to=usbdrive
move iso/Debian_5.0.iso (to usbdrive...) ok
# SUBCOMMANDS
@@ -83,12 +83,11 @@ Many git-annex subcommands will stage changes for later `git commit` by you.
* move [path ...]
- Moves the content of annexed files from the current repository to
- another one. Use with the --to option.
+ When used with the --to option, moves the content of annexed files from
+ the current repository to the specified one.
- Note that unlike drop, this does not honor annex.numcopies.
- A file's content can be moved even if there are insufficient
- copies to allow it to be dropped.
+ When used with the --from option, moves the content of annexed files
+ from the specified repository to the current one.
* init description
@@ -138,8 +137,6 @@ Many git-annex subcommands will stage changes for later `git commit` by you.
Specifies a repository that content will be retrieved from.
It should be specified using the name of a configured git remote.
- This can be used to limit the repository used by 'git annex get'.
-
* --to=repository
Specifies a git repository that content will be sent to.