Last active
August 29, 2015 14:01
-
-
Save jaredkc/128cbfddcaaee775176f to your computer and use it in GitHub Desktop.
A list of my Git aliases
This file contains hidden or 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] | |
| st = status | |
| co = checkout | |
| cm = commit | |
| pr = pull --rebase | |
| # Start over | |
| fuckit = reset --hard | |
| # Submodules | |
| subup = submodule update --init --recursive | |
| # Show verbose output about tags, branches or remotes | |
| tags = tag -l | |
| branches = branch -a | |
| remotes = remote -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment