Skip to content

Instantly share code, notes, and snippets.

@lbbedendo
Last active October 8, 2019 13:57
Show Gist options
  • Save lbbedendo/10b5a75f1fd8ee45964d8bd8b89f56c5 to your computer and use it in GitHub Desktop.
Save lbbedendo/10b5a75f1fd8ee45964d8bd8b89f56c5 to your computer and use it in GitHub Desktop.
Git useful commands and configs
#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 johndoe@example.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment