diff --git a/pages/common/git-config.md b/pages/common/git-config.md index 3f37386d6..088ed969e 100644 --- a/pages/common/git-config.md +++ b/pages/common/git-config.md @@ -27,3 +27,11 @@ - Revert a global configuration entry to its default value: `git config --global --unset alias.unstage` + +- Edit the git configuration for the current repository in the default editor: + +`git config --edit` + +- Edit the global git configuration in the default editor: + +`git config --global --edit`