gitconfig: add push.autoSetupRemote=true & lfs filter

The later was automatic that I haven't just noticed for committing before
This commit is contained in:
Aminda Suomalainen 2023-01-24 08:24:47 +02:00
parent d2dc35b2d1
commit 040707c171
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 14 additions and 2 deletions

View File

@ -33,6 +33,7 @@
[push] [push]
default = current default = current
gpgSign = if-asked gpgSign = if-asked
autoSetupRemote = true
[credential] [credential]
helper = cache --timeout=86400 helper = cache --timeout=86400
[merge] [merge]
@ -62,4 +63,9 @@
[advice] [advice]
# I am not developing in detached head state, I generally want to compile # I am not developing in detached head state, I generally want to compile
# a specific version of a program and I know how to get out of it # a specific version of a program and I know how to get out of it
detachedHead = false detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true

View File

@ -33,6 +33,7 @@
[push] [push]
default = current default = current
gpgSign = if-asked gpgSign = if-asked
autoSetupRemote = true
[credential] [credential]
helper = cache --timeout=86400 helper = cache --timeout=86400
[merge] [merge]
@ -62,4 +63,9 @@
[advice] [advice]
# I am not developing in detached head state, I generally want to compile # I am not developing in detached head state, I generally want to compile
# a specific version of a program and I know how to get out of it # a specific version of a program and I know how to get out of it
detachedHead = false detachedHead = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true