mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 22:51:21 +00:00
Update .gitconfig and .gitignore_global files
This commit is contained in:
parent
2f7778be36
commit
97f1a36dfa
2 changed files with 25 additions and 0 deletions
24
.gitconfig
Normal file
24
.gitconfig
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
[user]
|
||||||
|
name = Bart van der Braak
|
||||||
|
email = bartvdbraak@gmail.com
|
||||||
|
[alias]
|
||||||
|
p = push
|
||||||
|
st = status
|
||||||
|
ll = log --oneline
|
||||||
|
last = log -1 HEAD --stat
|
||||||
|
cm = commit -m
|
||||||
|
d = diff
|
||||||
|
gl = config --global -l
|
||||||
|
aa = add .
|
||||||
|
pushfwl = push --force-with-lease
|
||||||
|
[core]
|
||||||
|
excludesfile = /Users/bart.vanderbraak/.gitignore_global
|
||||||
|
[init]
|
||||||
|
defaultBranch = master
|
||||||
|
[push]
|
||||||
|
autoSetupRemote = true
|
||||||
|
[filter "lfs"]
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
|
smudge = git-lfs smudge -- %f
|
||||||
|
process = git-lfs filter-process
|
||||||
|
required = true
|
1
.gitignore_global
Normal file
1
.gitignore_global
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.DS_Store
|
Loading…
Reference in a new issue