Created
July 22, 2013 15:18
-
-
Save martialboniou/6054671 to your computer and use it in GitHub Desktop.
git snippets
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
() { | |
local NAME="My NAME" | |
local [email protected] | |
git config --global user.name "$NAME" | |
git config --global user.email $EMAIL | |
git commit --amend --reset-author | |
git config --global credential.helper cache | |
git config --global alias.st status | |
git config --global alias.rl reflog | |
git config --global alias.ci commit | |
git config --global alias.co checkout | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment