Created
December 12, 2017 03:18
-
-
Save daison12006013/4df3c921f39291bb575c11f6678aa308 to your computer and use it in GitHub Desktop.
System Configurations to your Vagrant
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
git config --global push.default current | |
git config --global user.name "John Doe" | |
git config --global user.email "[email protected]" | |
git config --global alias.st status | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.fh fetch | |
git config --global alias.pl pull | |
git config --global alias.ph pull |
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
# Too long, didn't read? | |
# | |
# Commands: | |
# brc - Will show you the branch you're working on | |
alias brc='git branch | grep "* "' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment