Skip to content

Commit

Permalink
Updated to .gitconfig to include file ignoring
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmccullough committed Feb 12, 2011
1 parent eb7c5f0 commit 4d2a592
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions workbook/examples/config/.gitconfig
@@ -1,6 +1,6 @@
[user]
name = Fird Birfle
email = fird@birfle.com
name = YOURNAMEHERE
email = YOUREMAILADDRESSHERE

[color]
# ui = true is a superset of all the more specific color options
Expand All @@ -20,11 +20,11 @@
[github]
# For GitNub and Gitx (non SSH tools)
# https://github.com/blog/180-local-github-config
user = YOURUSERNAME
token = f52j3j2k3j3
user = YOURUSERNAMEHERE
token = YOURTOKENHERE

[core]
excludesfile = /users/yourusername/.gitignore
excludesfile = /users/YOURUSERNAMEHERE/.gitignore
quotepath = false
autocrlf = input
# editor = emacs
Expand Down Expand Up @@ -53,18 +53,34 @@
spush = !git-svn dcommit
sync = !git pull && git push
lf = log --pretty=fuller
ignorechanges = update-index --assume-unchanged
noticechanges = update-index --no-assume-unchanged
gcap = gc --aggressive --prune
listconf = config --global --list
st = status
# newrepodoesntwork = !echo git init $1 && echo cd $1
# newrepo = !sh -c 'git init $1; echo hi' -
# newrepoalt = "!f() { git init $1}; f"
# testme = "!bash -c 'git init $0'"
# testme2 = !echo cd $1
# testme3 = "!function gitme() { git init $1; echo now cd to $1; }; gitme"

[apply]
whitespace = nowarn
[rerere]
enabled = 1

[diff]
tool = araxis
tool = myaraxis
[difftool]
prompt = false
[difftool "myaraxis"]
cmd = araxisgitdiff ONE "$LOCAL" THREE FOUR "$REMOTE"

[merge]
tool = araxis
tool = myaraxis
[mergetool]
prompt = false
keepBackup = false
[mergetool "myaraxis"]
cmd = araxisgitmerge "$PWD/$REMOTE" "$PWD/$BASE" "$PWD/$LOCAL" "$PWD/$MERGED"

0 comments on commit 4d2a592

Please sign in to comment.