Last active
March 30, 2018 04:28
-
-
Save wesleyhf/a7607661537638350b7ef612e299c174 to your computer and use it in GitHub Desktop.
Useful aliases for git
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
[alias] | |
s = status -u | |
l = log --oneline | |
a = add --all | |
cm = commit -m | |
d = diff | |
amend = commit --amend --no-edit | |
unstage = reset HEAD | |
wip = !git add --all && git commit -q -m 'wip' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment