diff options
author | William Carroll <wpcarro@gmail.com> | 2018-07-16T22·25-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | f84a9c64389010d6f569cb7fae1a5be95035330e (patch) | |
tree | c3d024c816680e105a9d78422051b935a0f879ea /configs | |
parent | 4ccfe6238e6164a9b938270692fbc6cdca349b29 (diff) |
Support global gitignore
Keep project-specific gitignore files clean.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.gitconfig | 6 | ||||
-rw-r--r-- | configs/shared/.gitignore | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/configs/shared/.gitconfig b/configs/shared/.gitconfig index dbccffc79a05..e6d0e7b9bc47 100644 --- a/configs/shared/.gitconfig +++ b/configs/shared/.gitconfig @@ -4,8 +4,8 @@ [alias] recent = for-each-ref --count=10 --sort=-committerdate refs/heads/ --format=\"%(refname:short)\" today = ! git log --date=relative --since=00:00:00 --all --no-merges --oneline --author=\"$(git config --get user.email)\" - changed-files = ! git diff --name-only $(current_branch) $(git merge-base $(current_branch) master) - conflicts = diff --name-only --diff-filter=U + changed-files = ! git --no-pager diff --name-only $(current_branch) $(git merge-base $(current_branch) master) + conflicts = ! git --no-pager diff --name-only --diff-filter=U yday = ! git log --name-only --since=yesterday.midnight --until=today.midnight --author=\"$(git config --get user.email)\" patch-grep = log -p -S [credential] @@ -17,3 +17,5 @@ autostash = true [github] user = wpcarro +[core] + excludesfile = ~/.gitignore diff --git a/configs/shared/.gitignore b/configs/shared/.gitignore new file mode 100644 index 000000000000..0d9002511ec2 --- /dev/null +++ b/configs/shared/.gitignore @@ -0,0 +1,2 @@ +# Mac +.DS_Store |