Created
December 20, 2019 17:33
-
-
Save devynspencer/2d440667d67b3e61f188676558c5a02e to your computer and use it in GitHub Desktop.
Basic gitconfig with useful aliases
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
# This is Git's per-user configuration file. | |
[user] | |
name = Devyn Spencer | |
email = [email protected] | |
[alias] | |
co = checkout | |
br = branch | |
ci = commit | |
st = status | |
ll = log | |
rs = reset | |
last = log -1 HEAD --stat | |
unstage = reset HEAD -- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment