Explorar el Código

Merge pull request #363 from igorshubovych/git-config

git-config: add page
Igor Shubovych hace 9 años
padre
commit
42155ea6dd
Se han modificado 1 ficheros con 27 adiciones y 0 borrados
  1. 27 0
      pages/common/git-config.md

+ 27 - 0
pages/common/git-config.md

@@ -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`