diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-09 18:54:49 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-09 18:54:49 -0400 |
commit | 90dd245522ccffee0e77eba3b79e32d6029977fc (patch) | |
tree | 88f243d03da2a8906b6ac30bbb688f67d5646d3e /doc/walkthrough/getting_file_content.mdwn | |
parent | 2136534be156c78273f949c34a9f54cdb37b7560 (diff) |
get --from is the same as copy --from
get not honoring --from has surprised me a few times, so least surprise
suggests it should just behave like copy --from. This leaves the difference
between get and copy being that copy always requires the remote to copy
from, while get will decide whether to get a file from a key/value store or
a remote.
Diffstat (limited to 'doc/walkthrough/getting_file_content.mdwn')
-rw-r--r-- | doc/walkthrough/getting_file_content.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/walkthrough/getting_file_content.mdwn b/doc/walkthrough/getting_file_content.mdwn index 5c899ee3c..bf45fd97f 100644 --- a/doc/walkthrough/getting_file_content.mdwn +++ b/doc/walkthrough/getting_file_content.mdwn @@ -8,8 +8,8 @@ USB drive. # cd /media/usb/annex # git pull laptop master # git annex get . - get my_cool_big_file (copying from laptop...) ok - get iso/debian.iso (copying from laptop...) ok + get my_cool_big_file (from laptop...) ok + get iso/debian.iso (from laptop...) ok Notice that you had to git pull from laptop first, this lets git-annex know what has changed in laptop, and so it knows about the files present there and |