Merge branch 'maint'
* maint: Update git-config documentation Fix unmatched emphasis tag in git-tutorial Update git-cherry-pick documentation Update git-archive documentation
This commit is contained in:
commit
754eeb33df
@ -33,9 +33,12 @@ OPTIONS
|
|||||||
Format of the resulting archive: 'tar', 'zip'... The default
|
Format of the resulting archive: 'tar', 'zip'... The default
|
||||||
is 'tar'.
|
is 'tar'.
|
||||||
|
|
||||||
--list::
|
--list, -l::
|
||||||
Show all available formats.
|
Show all available formats.
|
||||||
|
|
||||||
|
--verbose, -v::
|
||||||
|
Report progress to stderr.
|
||||||
|
|
||||||
--prefix=<prefix>/::
|
--prefix=<prefix>/::
|
||||||
Prepend <prefix>/ to each filename in the archive.
|
Prepend <prefix>/ to each filename in the archive.
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ OPTIONS
|
|||||||
development branch), adding this information can be
|
development branch), adding this information can be
|
||||||
useful.
|
useful.
|
||||||
|
|
||||||
-r|--replay::
|
-r::
|
||||||
It used to be that the command defaulted to do `-x`
|
It used to be that the command defaulted to do `-x`
|
||||||
described above, and `-r` was to disable it. Now the
|
described above, and `-r` was to disable it. Now the
|
||||||
default is not to do `-x` so this option is a no-op.
|
default is not to do `-x` so this option is a no-op.
|
||||||
|
@ -9,16 +9,16 @@ git-config - Get and set repository or global options
|
|||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
[verse]
|
[verse]
|
||||||
'git-config' [--global] [type] name [value [value_regex]]
|
'git-config' [--system | --global] [type] name [value [value_regex]]
|
||||||
'git-config' [--global] [type] --add name value
|
'git-config' [--system | --global] [type] --add name value
|
||||||
'git-config' [--global] [type] --replace-all name [value [value_regex]]
|
'git-config' [--system | --global] [type] --replace-all name [value [value_regex]]
|
||||||
'git-config' [--global] [type] --get name [value_regex]
|
'git-config' [--system | --global] [type] --get name [value_regex]
|
||||||
'git-config' [--global] [type] --get-all name [value_regex]
|
'git-config' [--system | --global] [type] --get-all name [value_regex]
|
||||||
'git-config' [--global] [type] --unset name [value_regex]
|
'git-config' [--system | --global] [type] --unset name [value_regex]
|
||||||
'git-config' [--global] [type] --unset-all name [value_regex]
|
'git-config' [--system | --global] [type] --unset-all name [value_regex]
|
||||||
'git-config' [--global] [type] --rename-section old_name new_name
|
'git-config' [--system | --global] [type] --rename-section old_name new_name
|
||||||
'git-config' [--global] [type] --remove-section name
|
'git-config' [--system | --global] [type] --remove-section name
|
||||||
'git-config' [--global] -l | --list
|
'git-config' [--system | --global] -l | --list
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
@ -76,6 +76,10 @@ OPTIONS
|
|||||||
--global::
|
--global::
|
||||||
Use global ~/.gitconfig file rather than the repository .git/config.
|
Use global ~/.gitconfig file rather than the repository .git/config.
|
||||||
|
|
||||||
|
--system::
|
||||||
|
Use system-wide $(prefix)/etc/gitconfig rather than the repository
|
||||||
|
.git/config.
|
||||||
|
|
||||||
--remove-section::
|
--remove-section::
|
||||||
Remove the given section from the configuration file.
|
Remove the given section from the configuration file.
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ make it real.
|
|||||||
Note: don't forget to 'add' a file again if you modified it after the
|
Note: don't forget to 'add' a file again if you modified it after the
|
||||||
first 'add' and before 'commit'. Otherwise only the previous added
|
first 'add' and before 'commit'. Otherwise only the previous added
|
||||||
state of that file will be committed. This is because git tracks
|
state of that file will be committed. This is because git tracks
|
||||||
content, so what you're really 'add'ing to the commit is the *content*
|
content, so what you're really 'adding' to the commit is the *content*
|
||||||
of the file in the state it is in when you 'add' it.
|
of the file in the state it is in when you 'add' it.
|
||||||
|
|
||||||
2) By using 'git commit -a' directly
|
2) By using 'git commit -a' directly
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include "cache.h"
|
#include "cache.h"
|
||||||
|
|
||||||
static const char git_config_set_usage[] =
|
static const char git_config_set_usage[] =
|
||||||
"git-config [ --global ] [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
|
"git-config [ --global | --system ] [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
|
||||||
|
|
||||||
static char *key;
|
static char *key;
|
||||||
static regex_t *key_regexp;
|
static regex_t *key_regexp;
|
||||||
|
Loading…
Reference in New Issue
Block a user