From 97f1a36dfa393fda1360b936a1f48a5bc5faf0b4 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Sun, 21 Apr 2024 00:22:00 +0200 Subject: [PATCH] Update .gitconfig and .gitignore_global files --- .gitconfig | 24 ++++++++++++++++++++++++ .gitignore_global | 1 + 2 files changed, 25 insertions(+) create mode 100644 .gitconfig create mode 100644 .gitignore_global diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..fbc6497 --- /dev/null +++ b/.gitconfig @@ -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 diff --git a/.gitignore_global b/.gitignore_global new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore_global @@ -0,0 +1 @@ +.DS_Store