1git-annex-get(1) General Commands Manual git-annex-get(1)
2
3
4
6 git-annex-get - make content of annexed files available
7
9 git annex get [path ...]
10
12 Makes the content of annexed files available in this repository. This
13 will involve copying them from a remote repository, or downloading
14 them, or transferring them from some kind of key-value store.
15
16 With no parameters, gets all annexed files in the current directory
17 whose content was not already present. Paths of files or directories to
18 get can be specified.
19
21 # evince foo.pdf
22 error: Unable to open document foo.pdf: No such file or directory
23 # ls foo.pdf
24 foo.pdf@
25 # git annex get foo.pdf
26 get foo.pdf (from origin..) ok
27 # evince foo.pdf
28
30 --auto
31
32 Rather than getting all the specified files, get only those that
33 don't yet have the desired number of copies, or that are pre‐
34 ferred content of the repository. See git-annex-preferred-con‐
35 tent(1)
36
37 --from=remote
38 Normally git-annex will choose which remotes to get the content
39 from, preferring remotes with lower costs. Use this option to
40 specify which remote to use.
41
42 Any files that are not available on the remote will be silently
43 skipped.
44
45 --jobs=N -JN
46 Enables parallel download with up to the specified number of
47 jobs running at once. For example: -J10
48
49 Setting this to "cpus" will run one job per CPU core.
50
51 When files can be downloaded from multiple remotes, enabling
52 parallel downloads will split the load between the remotes. For
53 example, if the files are available on remotes A and B, then one
54 file will be downloaded from A, and another file will be down‐
55 loaded from B in parallel. (Remotes with lower costs are still
56 preferred over higher cost remotes.)
57
58 file matching options
59 The git-annex-matching-options(1) can be used to specify files
60 to get.
61
62 --incomplete
63 Resume any incomplete downloads of files that were started and
64 interrupted at some point previously. Useful to pick up where
65 you left off ... when you don't quite remember where that was.
66
67 These incomplete files are the same ones that are listed as
68 unused temp files by git-annex-unused(1).
69
70 Note that the git-annex key will be displayed when downloading,
71 as git-annex does not know the associated file, and the associ‐
72 ated file may not even be in the current git working directory.
73
74 --all -A
75 Rather than specifying a filename or path to get, this option
76 can be used to get all available versions of all files.
77
78 This is the default behavior when running git-annex in a bare
79 repository.
80
81 --branch=ref
82 Operate on files in the specified branch or treeish.
83
84 --unused
85 Operate on files found by last run of git-annex unused.
86
87 --failed
88 Operate on files that have recently failed to be transferred.
89
90 Not to be confused with --incomplete which resumes only down‐
91 loads that managed to transfer part of the content of a file.
92
93 --key=keyname
94 Use this option to get a specified key.
95
96 --batch
97 Enables batch mode, in which lines containing names of files to
98 get are read from stdin.
99
100 As each specified file is processed, the usual progress output
101 is displayed. If the specified file's content is already
102 present, or it does not match specified matching options, or it
103 is not an annexed file, a blank line is output in response
104 instead.
105
106 Since the usual output while getting a file is verbose and not
107 machine-parseable, you may want to use --json in combination
108 with --batch.
109
110 -z Makes the --batch input be delimited by nulls instead of the
111 usual newlines.
112
113 --json Enable JSON output. This is intended to be parsed by programs
114 that use git-annex. Each line of output is a JSON object.
115
116 --json-progress
117 Include progress objects in JSON output.
118
119 --json-error-messages
120 Messages that would normally be output to standard error are
121 included in the json instead.
122
124 git-annex(1)
125
126 git-annex-drop(1)
127
128 git-annex-copy(1)
129
130 git-annex-move(1)
131
133 Joey Hess <id@joeyh.name>
134
135 git-annex-get(1)