Skip to content

Instantly share code, notes, and snippets.

@rajib
Created May 8, 2010 03:02
Show Gist options
  • Save rajib/394277 to your computer and use it in GitHub Desktop.
Save rajib/394277 to your computer and use it in GitHub Desktop.
.gitconfig
# ADD LOCAL CONFIGURATION HERE
# DO NOT EDIT BELOW THIS LINE
[color]
diff = auto
status = auto
branch = auto
[core]
excludesfile = ~/.gitignore
editor = vim
[alias]
ci = commit
co = checkout
c = commit -m
a = add
di = diff
dic = diff --cached
pl = pull
ps = push
plre = pull --rebase
st = status
out = log origin..HEAD
br = branch
bra = branch -a
[user]
name = Rajib Chowdhury
email = [email protected]
[mergetool "diffmerge"]
cmd = diffmerge --merge --result=$MERGED $LOCAL $BASE $REMOTE
trustExitCode = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment