Last active
October 8, 2019 13:57
-
-
Save lbbedendo/10b5a75f1fd8ee45964d8bd8b89f56c5 to your computer and use it in GitHub Desktop.
Git useful commands and configs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Set vim as the default editor (don't forget to check if vim is installed) | |
git config --global core.editor "vim" | |
#Disable pager.branch configuration | |
git config --global pager.branch false | |
#Set user and email | |
git config --global user.name "John Doe" | |
git config --global user.email [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment