Created
March 26, 2013 03:16
-
-
Save echojc/5242849 to your computer and use it in GitHub Desktop.
I don't think this is how they intended you to use it.
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
# ~/.bashrc | |
alias g='git' | |
# ~/.gitconfig | |
[alias] | |
l = log | |
o = checkout | |
p = pull --rebase | |
s = status | |
c = commit | |
n = clone | |
r = cherry-pick | |
d = diff | |
w = diff --word-diff=color | |
t = stash | |
g = gui | |
u = push | |
f = fetch | |
m = merge | |
a = add | |
# example | |
$ g c -a -m "this is a commit" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
g l && g g
;)