-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added initial files for Mac git development.
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../nix/bootstrap.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[am] | ||
threeWay = true | ||
[apply] | ||
ignoreWhitespace = change | ||
[color] | ||
ui = true | ||
[core] | ||
editor = emacs -nw | ||
excludesfile = ~/.gitignore | ||
[filter "lfs"] | ||
clean = git-lfs clean %f | ||
smudge = git-lfs smudge %f | ||
required = true | ||
[help] | ||
autoCorrect = -1 | ||
[log] | ||
abbrevCommit = true | ||
decorate = short | ||
date = local | ||
[pull] | ||
ff = only | ||
[push] | ||
default = current | ||
[rerere] | ||
enabled = true | ||
autoUpdate = true | ||
[user] | ||
name = Jeff Coffler | ||
email = [email protected] | ||
|
||
[alias] | ||
co-master = !git checkout master && git submodule foreach git checkout master | ||
lol = log --oneline --graph | ||
nuke = !git clean -fdx && git submodule foreach git clean -fdx | ||
sub-status = !git submodule foreach git status | ||
sync-subs = !git pull && git remote prune origin && git submodule foreach git pull && git submodule foreach git remote prune origin | ||
rmrbranch = push origin --delete # <Branch-name> supplied by user | ||
rmrprune = remote prune origin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Global GIT ignore file | ||
|
||
# Editor backup files | ||
*~ | ||
|
||
# Obvious Mac OS/X stuff | ||
.DS_Store | ||
.Trashes | ||
.Spotlight-V100 | ||
|
||
# Ignore Python version files from pyenv | ||
.python-version |