Last active
March 8, 2017 22:24
-
-
Save ntrepid8/a5ae2f0ad2609914a0b58b66b8c5572b to your computer and use it in GitHub Desktop.
Git config file 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
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
s = status | |
ls = branch --sort=committerdate | |
lsa = branch --list --sort=committerdate --all | |
lsr = branch --list --sort=committerdate --remotes | |
f = fetch | |
fa = fetch --all | |
[push] | |
default = simple | |
[user] | |
email = [email protected] | |
name = Josh Austin | |
[core] | |
editor = vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment