diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-08-03 12:37:12 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-08-03 12:37:12 -0400 |
commit | 508517de485e77196a8d8e33558f4185c50dea96 (patch) | |
tree | 319fc6e63da144e40dd124a07f4bb6c0ad25c5ee /doc/git-annex-get.mdwn | |
parent | 019733f00d01301d71acc46245d2dc130934d951 (diff) |
get, move, copy, mirror: Added --failed switch which retries failed copies/moves
Note that get --from foo --failed will get things that a previous get --from bar
tried and failed to get, etc. I considered making --failed only retry
transfers from the same remote, but it was easier, and seems more useful,
to not have the same remote requirement.
Noisy due to some refactoring into Types/
Diffstat (limited to 'doc/git-annex-get.mdwn')
-rw-r--r-- | doc/git-annex-get.mdwn | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/git-annex-get.mdwn b/doc/git-annex-get.mdwn index 34b698084..9d06786c6 100644 --- a/doc/git-annex-get.mdwn +++ b/doc/git-annex-get.mdwn @@ -32,6 +32,11 @@ or transferring them from some kind of key-value store. Enables parallel download with up to the specified number of jobs running at once. For example: `-J10` +* file matching options + + The [[git-annex-matching-options]](1) + can be used to specify files to get. + * `--incomplete` Resume any incomplete downloads of files that were started and @@ -45,11 +50,6 @@ or transferring them from some kind of key-value store. as git-annex does not know the associated file, and the associated file may not even be in the current git working directory. -* file matching options - - The [[git-annex-matching-options]](1) - can be used to specify files to get. - * `--all` Rather than specifying a filename or path to get, this option can be @@ -65,6 +65,10 @@ or transferring them from some kind of key-value store. Operate on files found by last run of git-annex unused. +* `--failed` + + Operate on files that have recently failed to be transferred. + * `--key=keyname` Use this option to get a specified key. |