Created
March 7, 2013 09:49
-
-
Save swarut/5106844 to your computer and use it in GitHub Desktop.
.gitconfig
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
[color] | |
ui = true | |
[user] | |
name = Warut Surapat | |
email = [email protected] | |
[alias] | |
st = status | |
br = branch | |
df = diff | |
co = checkout | |
pl = pull | |
pl-o = pull origin | |
ps = push | |
ps-o = push origin | |
ffs = flow feature start | |
fff = flow feature finish | |
fft = flow feature track | |
ffr = flow feature rebase | |
ffp = flow feature publish | |
[core] | |
excludesfile = /Users/swarut/.gitignore_global | |
editor = subl -n -w | |
[difftool "sourcetree"] | |
cmd = opendiff \"$LOCAL\" \"$REMOTE\" | |
path = | |
[mergetool "sourcetree"] | |
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\" | |
trustExitCode = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment