doc: replace git config --list/-l with `list`
Replace uses of `git config --list` (short or long) with the subcommand `list` since `--list` is deprecated. We will change the “man page” phrasing in gitcvs-migration(7) in the next commit, since we are already visiting that sentence. But note that we leave the “man page” phrasing in the sentence that we touch in gittutorial(7) since it’s a tutorial and not a manual page. We can be more wordy in a tutorial context. Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
2855562ca6
commit
5bdb9883bd
|
|
@ -22,7 +22,7 @@ OPTIONS
|
|||
Display the logical variables. In addition, all the
|
||||
variables of the Git configuration file .git/config are listed
|
||||
as well. (However, the configuration variables listing functionality
|
||||
is deprecated in favor of `git config -l`.)
|
||||
is deprecated in favor of `git config list`.)
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ them first before running git pull.
|
|||
================================
|
||||
The 'pull' command knows where to get updates from because of certain
|
||||
configuration variables that were set by the first 'git clone'
|
||||
command; see `git config -l` and the linkgit:git-config[1] man
|
||||
command; see `git config list` and the linkgit:git-config[1] man
|
||||
page for details.
|
||||
================================
|
||||
|
||||
|
|
|
|||
|
|
@ -659,7 +659,7 @@ use by the client, MUST indicate prerequisites (in any) with standard
|
|||
applicable.
|
||||
+
|
||||
The advertised URI may alternatively contain a plaintext file that `git
|
||||
config --list` would accept (with the `--file` option). The key-value
|
||||
config list` would accept (with the `--file` option). The key-value
|
||||
pairs in this list are in the `bundle.*` namespace (see
|
||||
linkgit:git-config[1]).
|
||||
|
||||
|
|
|
|||
|
|
@ -432,7 +432,7 @@ bob$ git config --get remote.origin.url
|
|||
-------------------------------------
|
||||
|
||||
(The complete configuration created by `git clone` is visible using
|
||||
`git config -l`, and the linkgit:git-config[1] man page
|
||||
`git config list`, and the linkgit:git-config[1] man page
|
||||
explains the meaning of each option.)
|
||||
|
||||
Git also keeps a pristine copy of Alice's `master` branch under the
|
||||
|
|
|
|||
|
|
@ -1253,7 +1253,7 @@ it.
|
|||
$ git config --system color.ui never
|
||||
$ git config --global color.ui always
|
||||
$ git config --local color.ui auto
|
||||
$ git config --list --show-scope | grep 'color.ui'
|
||||
$ git config list --show-scope | grep 'color.ui'
|
||||
system color.ui=never
|
||||
global color.ui=always
|
||||
local color.ui=auto
|
||||
|
|
|
|||
|
|
@ -2865,7 +2865,7 @@ stored in Git configuration variables, which you can see using
|
|||
linkgit:git-config[1]:
|
||||
|
||||
-------------------------------------------------
|
||||
$ git config -l
|
||||
$ git config list
|
||||
core.repositoryformatversion=0
|
||||
core.filemode=true
|
||||
core.logallrefupdates=true
|
||||
|
|
|
|||
Loading…
Reference in New Issue