Created
July 6, 2011 12:55
-
-
Save alexrinass/1067161 to your computer and use it in GitHub Desktop.
Git config
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
[user] | |
name = Alexander Rinass | |
email = [email protected] | |
[core] | |
editor = mate -w | |
[github] | |
user = alexrinass | |
[color] | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
[alias] | |
st = status -sb | |
co = checkout | |
up = "!git stash save && git pull && git stash pop" | |
sync = "!git stash save && git pull && git push && git stash pop" | |
lsb = "branch -v" | |
ls = "log --oneline --decorate" | |
lsg = "log --oneline --decorate --graph" | |
untrack = "rm -r --cached --" | |
unstage = "reset HEAD --" | |
rf = "checkout HEAD --" | |
me = "log --author='alex' --after=yesterday --no-merges --oneline --reverse" | |
lsi = "ls-files --others --ignored --exclude-standard" | |
lsit = "ls-files --ignored --exclude-standard" | |
ksdiff = difftool | |
[status] | |
showUntrackedFiles = normal | |
[merge] | |
tool = opendiff | |
[mergetool "ksdiff"] | |
cmd = "/usr/local/bin/ksdiff -w $BASE $LOCAL $REMOTE $MERGED" | |
[diff] | |
tool = ksdiff | |
[difftool "ksdiff"] | |
cmd = "/usr/local/bin/ksdiff $LOCAL $REMOTE" | |
[difftool] | |
prompt = false |
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
[user] | |
name = Alexander Rinass | |
email = [email protected] | |
[core] | |
editor = vim | |
[color] | |
ui = auto | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
[alias] | |
st = status -sb | |
co = checkout | |
lsb = "branch -v" | |
ls = "log --oneline --decorate" | |
lsg = "log --oneline --decorate --graph" | |
untrack = "rm -r --cached --" | |
unstage = "reset HEAD --" | |
rf = "checkout HEAD --" | |
me = "log --author='alex' --after=yesterday --no-merges --oneline --reverse" | |
lsi = "ls-files --others --ignored --exclude-standard" | |
lsit = "ls-files --ignored --exclude-standard" | |
[status] | |
showUntrackedFiles = normal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment