mirror of https://github.com/CrimsonTome/tldr.git
git-config: add page
parent
b71a5265c0
commit
13740e2fd9
|
@ -0,0 +1,27 @@
|
||||||
|
# git config
|
||||||
|
|
||||||
|
> Get and set repository or global options
|
||||||
|
|
||||||
|
- Print list of options for current repository
|
||||||
|
|
||||||
|
`git config --list --local`
|
||||||
|
|
||||||
|
- Print global list of options, set in ~/.gitconfig
|
||||||
|
|
||||||
|
`git config --list --global`
|
||||||
|
|
||||||
|
- Get full list of options
|
||||||
|
|
||||||
|
`git config --list`
|
||||||
|
|
||||||
|
- Get value of alias.ls option
|
||||||
|
|
||||||
|
`git config alias.st`
|
||||||
|
|
||||||
|
- Set option alias.ls=status in file ~/.gitconfig
|
||||||
|
|
||||||
|
`git config --global alias.ls "status"`
|
||||||
|
|
||||||
|
- Remove option alias.st from ~/.gitconfig
|
||||||
|
|
||||||
|
`git config --global --unset alias.st`
|
Loading…
Reference in New Issue