Skip to content

Commit

Permalink
Add git ignore and config example
Browse files Browse the repository at this point in the history
  • Loading branch information
markjs committed Sep 29, 2013
1 parent 46736f6 commit f2d8c69
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
38 changes: 38 additions & 0 deletions git/gitconfig.symlink.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Sample gitconfig
#

[hub]
protocol = https
[user]
name = AUTHORNAME
email = AUTHOREMAIL
[credential]
helper = GIT_CREDENTIAL_HELPER
[alias]
co = checkout
promote = !$ZSH/bin/git-promote
wtf = !$ZSH/bin/git-wtf
rank-contributers = !$ZSH/bin/git-rank-contributers
count = !git shortlog -sn
[color]
diff = auto
status = auto
branch = auto
ui = true
[core]
excludesfile = ~/.gitignore
editor = vim
[apply]
whitespace = nowarn
[mergetool]
keepBackup = false
[difftool]
prompt = false
[help]
autocorrect = 1
[push]
# See `git help config` (search for push.default)
# for more information on different options of the below setting.
#
# Setting to git 2.0 default to surpress warning message
default = simple
5 changes: 5 additions & 0 deletions git/gitignore.symlink
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
.svn
*~
*.swp
.sass-cache/

0 comments on commit f2d8c69

Please sign in to comment.