Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.05 KB

File metadata and controls

49 lines (33 loc) · 1.05 KB

Get Command

Get files into the file-cache. The command is applied on a store.

Update index before get:

fileset <store> get [--index-update] ...

Automatically apply the action without confirmation:

fileset <store> get [-f/--force]

Use fileset (see fileset for more info):

fileset <store> get [-s/--set <fileset.yml>] ...

If a FileSet.yml file exists in the current working directory, it will be applied, unless --set <fileset.yml> is used.

To get a subset of the set, specify one or more paths:

 fileset <store> get path/in/set ...

To get a specific asset ID, specify one or more IDs:

fileset <store> get ID ...

To get a specific asset ID from the file-store without or outside current set-definition, use the get+ (get plus command), and specify one or more IDs:

# ID from full index
fileset <store> get+ <ID>

Running get+ without specifying an ID will get every asset in the store.

get+ can't be combined with --set.