From d17d5a77893ac01fc7c29f92447a3e85e3501d9f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 23 Mar 2015 18:20:42 -0400 Subject: separated man pages for all the setup commands while at the gate in ATL --- doc/git-annex-dead.mdwn | 25 +++++++ doc/git-annex-describe.mdwn | 29 ++++++++ doc/git-annex-direct.mdwn | 28 ++++++++ doc/git-annex-enableremote.mdwn | 56 +++++++++++++++ doc/git-annex-group.mdwn | 29 ++++++++ doc/git-annex-groupwanted.mdwn | 32 +++++++++ doc/git-annex-indirect.mdwn | 26 +++++++ doc/git-annex-init.mdwn | 27 +++++++ doc/git-annex-initremote.mdwn | 57 +++++++++++++++ doc/git-annex-numcopies.mdwn | 31 ++++++++ doc/git-annex-semitrust.mdwn | 24 +++++++ doc/git-annex-trust.mdwn | 25 +++++++ doc/git-annex-ungroup.mdwn | 21 ++++++ doc/git-annex-untrust.mdwn | 25 +++++++ doc/git-annex-vicfg.mdwn | 23 ++++++ doc/git-annex-wanted.mdwn | 29 ++++++++ doc/git-annex.mdwn | 155 ++++++++++------------------------------ 17 files changed, 523 insertions(+), 119 deletions(-) create mode 100644 doc/git-annex-dead.mdwn create mode 100644 doc/git-annex-describe.mdwn create mode 100644 doc/git-annex-direct.mdwn create mode 100644 doc/git-annex-enableremote.mdwn create mode 100644 doc/git-annex-group.mdwn create mode 100644 doc/git-annex-groupwanted.mdwn create mode 100644 doc/git-annex-indirect.mdwn create mode 100644 doc/git-annex-init.mdwn create mode 100644 doc/git-annex-initremote.mdwn create mode 100644 doc/git-annex-numcopies.mdwn create mode 100644 doc/git-annex-semitrust.mdwn create mode 100644 doc/git-annex-trust.mdwn create mode 100644 doc/git-annex-ungroup.mdwn create mode 100644 doc/git-annex-untrust.mdwn create mode 100644 doc/git-annex-vicfg.mdwn create mode 100644 doc/git-annex-wanted.mdwn diff --git a/doc/git-annex-dead.mdwn b/doc/git-annex-dead.mdwn new file mode 100644 index 000000000..597d23fe5 --- /dev/null +++ b/doc/git-annex-dead.mdwn @@ -0,0 +1,25 @@ +# NAME + +git-annex trust - hide a lost repository + +# SYNOPSIS + +git annex dead `[repository ...]` + +# DESCRIPTION + +Indicates that the repository has been irretrievably lost. +(To undo, use semitrust.) + +Repositories can be specified using their remote name, their +description, or their UUID. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-describe.mdwn b/doc/git-annex-describe.mdwn new file mode 100644 index 000000000..5890801a2 --- /dev/null +++ b/doc/git-annex-describe.mdwn @@ -0,0 +1,29 @@ +# NAME + +git-annex describe - change description of a repository + +# SYNOPSIS + +git annex describe repository description + +# DESCRIPTION + +Changes the description of a repository. + +The repository to describe can be specified by git remote name or +by uuid. To change the description of the current repository, use +"here". + +Repository descriptions are displayed by git-annex in various places. +They are most useful when git-annex knows about a repository, but there is +no git remote corresponding to it. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-direct.mdwn b/doc/git-annex-direct.mdwn new file mode 100644 index 000000000..9a9d66d9e --- /dev/null +++ b/doc/git-annex-direct.mdwn @@ -0,0 +1,28 @@ +# NAME + +git-annex direct - switch repository to direct mode + +# SYNOPSIS + +git annex direct + +# DESCRIPTION + +Switches a repository to use direct mode, where rather than symlinks to +files, the files are directly present in the repository. + +As part of the switch to direct mode, any changed files will be committed. + +Note that git commands that operate on the work tree will refuse to +run in direct mode repositories. Use `git annex proxy` to safely run such +commands. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-enableremote.mdwn b/doc/git-annex-enableremote.mdwn new file mode 100644 index 000000000..cb4002a08 --- /dev/null +++ b/doc/git-annex-enableremote.mdwn @@ -0,0 +1,56 @@ +# NAME + +git-annex enableremote - enables use of an existing special remote + +# SYNOPSIS + +git annex enableremote `name [param=value ...]` + +# DESCRIPTION + +Enables use of an existing special remote in the current repository, +which may be a different repository than the one in which it was +originally created with the initremote command. + +The name of the remote is the same name used when originally +creating that remote with `git annex initremote`. Run +`git annex enableremote` without any name to get a list of +special remote names. + +Some special remotes may need parameters to be specified every time they are +enabled. For example, the directory special remote requires a directory= +parameter. + +This command can also be used to modify the configuration of an existing +special remote, by specifying new values for parameters that were +originally set when using initremote. (However, some settings such as +the as the encryption scheme cannot be changed once a special remote +has been created.) + +The GPG keys that an encrypted special remote is encrypted with can be +changed using the keyid+= and keyid-= parameters. These respectively +add and remove keys from the list. However, note that removing a key +does NOT necessarily prevent the key's owner from accessing data +in the encrypted special remote +(which is by design impossible, short of deleting the remote). + +One use-case of keyid-= is to replace a revoked key with +a new key: + + git annex enableremote mys3 keyid-=revokedkey keyid+=newkey + +Also, note that for encrypted special remotes using plain public-key +encryption (encryption=pubkey), adding or removing a key has NO effect +on files that have already been copied to the remote. Hence using +keyid+= and keyid-= with such remotes should be used with care, and +make little sense except in cases like the revoked key example above. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-group.mdwn b/doc/git-annex-group.mdwn new file mode 100644 index 000000000..e219cd207 --- /dev/null +++ b/doc/git-annex-group.mdwn @@ -0,0 +1,29 @@ +# NAME + +git-annex group - add a repository to a group + +# SYNOPSIS + +git annex group `repository groupname` + +# DESCRIPTION + +Adds a repository to a group, such as "archival", "enduser", or "transfer". +The groupname must be a single word. + +Omit the groupname to show the current groups that a repository is in. + +There are some standard groups that have different default preferred content +settings. See + +A repository can be in multiple groups at the same time. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-groupwanted.mdwn b/doc/git-annex-groupwanted.mdwn new file mode 100644 index 000000000..ef20ccd3e --- /dev/null +++ b/doc/git-annex-groupwanted.mdwn @@ -0,0 +1,32 @@ +# NAME + +git-annex groupwanted - get or set groupwanted expression + +# SYNOPSIS + +git annex groupwanted `groupname [expression]` + +# DESCRIPTION + +Sets or displays the groupwanted expression. This will be used by +repositories that are in the group, and that have their preferred +content expression set to "groupwanted". + +For example, to configure a group named redundantarchive, and +make repositories in the group want to contain 3 copies of every file: + + git annex groupwanted redundantarchive "not (copies=redundantarchive:3)" + for repo in foo bar baz; do + git annex group $repo redundantarchive + git annex wanted $repo groupwanted + done + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-indirect.mdwn b/doc/git-annex-indirect.mdwn new file mode 100644 index 000000000..42dc0a045 --- /dev/null +++ b/doc/git-annex-indirect.mdwn @@ -0,0 +1,26 @@ +# NAME + +git-annex indirect - switch repository to indirect mode + +# SYNOPSIS + +git annex indirect + +# DESCRIPTION + +Switches a repository back from direct mode to the default, indirect +mode. + +Some systems cannot support git-annex in indirect mode, because they +do not support symbolic links. Repositories on such systems instead +default to using direct mode. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-init.mdwn b/doc/git-annex-init.mdwn new file mode 100644 index 000000000..1398923bf --- /dev/null +++ b/doc/git-annex-init.mdwn @@ -0,0 +1,27 @@ +# NAME + +git-annex init - initialize git-annex + +# SYNOPSIS + +git annex init `[description]` + +# DESCRIPTION + +Until a repository (or one of its remotes) has been initialized, +git-annex will refuse to operate on it, to avoid accidentally +using it in a repository that was not intended to have an annex. + +It's useful, but not mandatory, to initialize each new clone +of a repository with its own description. If you don't provide one, +one will be generated using the username, hostname and the path. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-initremote.mdwn b/doc/git-annex-initremote.mdwn new file mode 100644 index 000000000..28ea97378 --- /dev/null +++ b/doc/git-annex-initremote.mdwn @@ -0,0 +1,57 @@ +# NAME + +git-annex initremote - creates a special (non-git) remote + +# SYNOPSIS + +git annex initremote `name type=value [param=value ...]` + +# DESCRIPTION + +Creates a new special remote, and adds it to `.git/config`. + +Example Amazon S3 remote: + + git annex initremote mys3 type=S3 encryption=hybrid keyid=me@example.com datacenter=EU + +Many different types of special remotes are supported by git-annex. +For a list and details, see + +The remote's configuration is specified by the parameters passed +to this command. Different types of special remotes need different +configuration values. The command will prompt for parameters as needed. + +All special remotes support encryption. You can either specify +`encryption=none` to disable encryption, or specify +`encryption=hybrid keyid=$keyid ...` to specify a GPG key id (or an email +address associated with a key). + +There are actually three schemes that can be used for management of the +encryption keys. When using the encryption=hybrid scheme, additional +GPG keys can be given access to the encrypted special remote easily +(without re-encrypting everything). When using encryption=shared, +a shared key is generated and stored in the git repository, allowing +anyone who can clone the git repository to access it. Finally, when using +encryption=pubkey, content in the special remote is directly encrypted +to the specified GPG keys, and additional ones cannot easily be given +access. + +# OPTIONS + +* `--fast` + + When initializing a remote that uses encryption, a cryptographic key is + created. This requires sufficient entropy. If initremote seems to hang + or take a long time while generating the key, you may want to Ctrl-c it + and re-run with `--fast`, which causes it to use a lower-quality source of + randomness. (Ie, /dev/urandom instead of /dev/random) + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-numcopies.mdwn b/doc/git-annex-numcopies.mdwn new file mode 100644 index 000000000..b29cbb8bf --- /dev/null +++ b/doc/git-annex-numcopies.mdwn @@ -0,0 +1,31 @@ +# NAME + +git-annex numcopies - configure desired number of copies + +# SYNOPSIS + +git annex numcopies `N` + +# DESCRIPTION + +Tells git-annex how many copies it should preserve of files, over all +repositories. The default is 1. + +Run without a number to get the current value. + +When git-annex is asked to drop a file, it first verifies that the +required number of copies can be satisfied among all the other +repositories that have a copy of the file. + +This can be overridden on a per-file basis by the annex.numcopies setting +in .gitattributes files. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-semitrust.mdwn b/doc/git-annex-semitrust.mdwn new file mode 100644 index 000000000..e164f965d --- /dev/null +++ b/doc/git-annex-semitrust.mdwn @@ -0,0 +1,24 @@ +# NAME + +git-annex semitrust - return repository to default trust level + +# SYNOPSIS + +git annex semitrust `[repository ...]` + +# DESCRIPTION + +Returns a repository to the default semi trusted state. + +Repositories can be specified using their remote name, their +description, or their UUID. For the current repository, use "here". + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-trust.mdwn b/doc/git-annex-trust.mdwn new file mode 100644 index 000000000..fcb4a06db --- /dev/null +++ b/doc/git-annex-trust.mdwn @@ -0,0 +1,25 @@ +# NAME + +git-annex trust - trust a repository + +# SYNOPSIS + +git annex trust `[repository ...]` + +# DESCRIPTION + +Records that a repository is trusted to not unexpectedly lose +content. Use with care. + +Repositories can be specified using their remote name, their +description, or their UUID. To trust the current repository, use "here". + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-ungroup.mdwn b/doc/git-annex-ungroup.mdwn new file mode 100644 index 000000000..4d105c0fa --- /dev/null +++ b/doc/git-annex-ungroup.mdwn @@ -0,0 +1,21 @@ +# NAME + +git-annex ungroup - remove a repository from a group + +# SYNOPSIS + +git annex ungroup `repository groupname` + +# DESCRIPTION + +Removes a repository from a group. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-untrust.mdwn b/doc/git-annex-untrust.mdwn new file mode 100644 index 000000000..c0224a1dd --- /dev/null +++ b/doc/git-annex-untrust.mdwn @@ -0,0 +1,25 @@ +# NAME + +git-annex untrust - do not trust a repository + +# SYNOPSIS + +git annex untrust `[repository ...]` + +# DESCRIPTION + +Records that a repository is not trusted and could lose content +at any time. + +Repositories can be specified using their remote name, their +description, or their UUID. To untrust the current repository, use "here". + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-vicfg.mdwn b/doc/git-annex-vicfg.mdwn new file mode 100644 index 000000000..171a4acef --- /dev/null +++ b/doc/git-annex-vicfg.mdwn @@ -0,0 +1,23 @@ +# NAME + +git-annex vicfg - edit git-annex's configuration + +# SYNOPSIS + +git annex vicfg + +# DESCRIPTION + +Opens EDITOR on a temp file containing all of git-annex's global +configuration settings, and when it exits, stores any +changes made back to the git-annex branch. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex-wanted.mdwn b/doc/git-annex-wanted.mdwn new file mode 100644 index 000000000..131cbe798 --- /dev/null +++ b/doc/git-annex-wanted.mdwn @@ -0,0 +1,29 @@ +# NAME + +git-annex wanted - get or set preferred content expression + +# SYNOPSIS + +git annex wanted `repository [expression]` + +# DESCRIPTION + +When run with an expression, configures the content that is preferred +to be held in the archive. See [[git-annex-preferred-content]](1) + +For example: + + git annex wanted . "include=*.mp3 or include=*.ogg" + +Without an expression, displays the current preferred content setting +of the repository. + +# SEE ALSO + +[[git-annex]](1) + +# AUTHOR + +Joey Hess + +Warning: Automatically converted into a man page by mdwn2man. Edit with care. diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 53e981f1c..3f15cc924 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -191,161 +191,80 @@ subdirectories). Until a repository (or one of its remotes) has been initialized, git-annex will refuse to operate on it, to avoid accidentally using it in a repository that was not intended to have an annex. - - It's useful, but not mandatory, to initialize each new clone - of a repository with its own description. If you don't provide one, - one will be generated using the username, hostname and the path. + + See [[git-annex-init]](1) for details. * `describe repository description` Changes the description of a repository. + + See [[git-annex-describe]](1) for details. - The repository to describe can be specified by git remote name or - by uuid. To change the description of the current repository, use - "here". - -* `initremote name [param=value ...]` +* `initremote name type=value [param=value ...]` Creates a new special remote, and adds it to `.git/config`. - The remote's configuration is specified by the parameters. Different - types of special remotes need different configuration values. The - command will prompt for parameters as needed. - - All special remotes support encryption. You can either specify - `encryption=none` to disable encryption, or specify - `encryption=hybrid keyid=$keyid ...` to specify a GPG key id (or an email - address associated with a key). - - There are actually three schemes that can be used for management of the - encryption keys. When using the encryption=hybrid scheme, additional - GPG keys can be given access to the encrypted special remote easily - (without re-encrypting everything). When using encryption=shared, - a shared key is generated and stored in the git repository, allowing - anyone who can clone the git repository to access it. Finally, when using - encryption=pubkey, content in the special remote is directly encrypted - to the specified GPG keys, and additional ones cannot easily be given - access. - - Note that with encryption enabled, a cryptographic key is created. - This requires sufficient entropy. If initremote seems to hang or take - a long time while generating the key, you may want to Ctrl-c it and - re-run with `--fast`, which causes it to use a lower-quality source of - randomness. - - Example Amazon S3 remote: - - git annex initremote mys3 type=S3 encryption=hybrid keyid=me@example.com datacenter=EU - + See [[git-annex-initremote]](1) for details. + * `enableremote name [param=value ...]` - Enables use of an existing special remote in the current repository, - which may be a different repository than the one in which it was - originally created with the initremote command. - - The name of the remote is the same name used when originally - creating that remote with "initremote". Run "git annex enableremote" - without any name to get a list of special remote names. - - Some special remotes may need parameters to be specified every time. - For example, the directory special remote requires a directory= parameter. - - This command can also be used to modify the configuration of an existing - special remote, by specifying new values for parameters that were - originally set when using initremote. (However, some settings such as - the as the encryption scheme cannot be changed once a special remote - has been created.) - - The GPG keys that an encrypted special remote is encrypted with can be - changed using the keyid+= and keyid-= parameters. These respectively - add and remove keys from the list. However, note that removing a key - does NOT necessarily prevent the key's owner from accessing data - in the encrypted special remote - (which is by design impossible, short of deleting the remote). - - One use-case of keyid-= is to replace a revoked key with - a new key: - - git annex enableremote mys3 keyid-=revokedkey keyid+=newkey - - Also, note that for encrypted special remotes using plain public-key - encryption (encryption=pubkey), adding or removing a key has NO effect - on files that have already been copied to the remote. Hence using - keyid+= and keyid-= with such remotes should be used with care, and - make little sense except in cases like the revoked key example above. + Enables use of an existing special remote in the current repository. + + See [[git-annex-enableremote]](1) for details. * `numcopies [N]` - Tells git-annex how many copies it should preserve of files, over all - repositories. The default is 1. - - Run without a number to get the current value. - - When git-annex is asked to drop a file, it first verifies that the - required number of copies can be satisfied among all the other - repositories that have a copy of the file. - - This can be overridden on a per-file basis by the annex.numcopies setting - in .gitattributes files. + Configure desired number of copies. + + See [[git-annex-numcopies]](1) for details. * `trust [repository ...]` Records that a repository is trusted to not unexpectedly lose content. Use with care. - - To trust the current repository, use "here". + + See [[git-annex-trust]](1) for details. * `untrust [repository ...]` Records that a repository is not trusted and could lose content at any time. + + See [[git-annex-untrust]](1) for details. * `semitrust [repository ...]` Returns a repository to the default semi trusted state. + + See [[git-annex-semitrust]](1) for details. * `dead [repository ...]` Indicates that the repository has been irretrievably lost. - (To undo, use semitrust.) + + See [[git-annex-dead]](1) for details. * `group repository groupname` - Adds a repository to a group, such as "archival", "enduser", or "transfer". - The groupname must be a single word. - - Omit the groupname to show the current groups that a repository is in. + Add a repository to a group. + + See [[git-annex-group]](1) for details. * `ungroup repository groupname` Removes a repository from a group. + + See [[git-annex-ungroup]](1) for details. * `wanted repository [expression]` + + Get or set preferred content expression. - When run with an expression, configures the content that is preferred - to be held in the archive. See PREFERRED CONTENT below. - - For example: - - git annex wanted . "include=*.mp3 or include=*.ogg" - - Without an expression, displays the current preferred content setting - of the repository. + See [[git-annex-wanted]](1) for details. * `groupwanted groupname [expression]` - Sets or displays the groupwanted expression. This will be used by - repositories that are in the group, and that have their preferred - content expression set to "groupwanted". - - For example, to configure a group named redundantarchive, and - make repositories in the group want to contain 3 copies of every file: - - git annex groupwanted redundantarchive "not (copies=redundantarchive:3)" - for repo in foo bar baz; do - git annex group $repo redundantarchive - git annex wanted $repo groupwanted - done + See [[git-annex-groupwanted]](1) for details. * `schedule repository [expression]` @@ -358,23 +277,21 @@ subdirectories). Opens EDITOR on a temp file containing most of the above configuration settings, as well as a few others, and when it exits, stores any changes made back to the git-annex branch. + + See [[git-annex-vicfg]](1) for details. * `direct` Switches a repository to use direct mode, where rather than symlinks to files, the files are directly present in the repository. - - As part of the switch to direct mode, any changed files will be committed. - - Note that git commands that operate on the work tree will refuse to - run in direct mode repositories. Use `git annex proxy` to safely run such - commands. + + See [[git-annex-direct]](1) for details. * `indirect` Switches a repository back from direct mode to the default, indirect mode. - - As part of the switch from direct mode, any changed files will be committed. + + See [[git-annex-indirect]](1) for details. # REPOSITORY MAINTENANCE COMMANDS -- cgit v1.2.3