Clean up git config
This commit is contained in:
parent
c5009d585a
commit
1e5bfc5eae
|
@ -1,39 +1,41 @@
|
||||||
[credential]
|
|
||||||
helper = store
|
|
||||||
[user]
|
|
||||||
email = 27jf@web.de
|
|
||||||
name = Xerus
|
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
editor = nvim
|
editor = nvim
|
||||||
|
[diff]
|
||||||
|
tool = meld
|
||||||
|
[submodule]
|
||||||
|
recurse = true
|
||||||
|
[rerere]
|
||||||
|
enabled = true
|
||||||
|
# Accelerate packing by automatically determining thread count
|
||||||
|
[pack]
|
||||||
|
threads = 0
|
||||||
|
|
||||||
|
# Automatically push to branch with matching name
|
||||||
[push]
|
[push]
|
||||||
default = current
|
default = current
|
||||||
|
# Disable pagination for branch commmand by default
|
||||||
[pager]
|
[pager]
|
||||||
branch = false
|
branch = false
|
||||||
|
[grep]
|
||||||
|
lineNumber
|
||||||
|
|
||||||
[color "status"]
|
[color "status"]
|
||||||
added = green
|
added = green
|
||||||
changed = yellow
|
changed = yellow
|
||||||
untracked = red
|
untracked = magenta
|
||||||
[pack]
|
|
||||||
threads = 3
|
[user]
|
||||||
[submodule]
|
email = 27jf@pm.me
|
||||||
recurse = true
|
name = xerus
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
curbranch = symbolic-ref --short HEAD
|
curbranch = symbolic-ref --short HEAD
|
||||||
root = rev-parse --show-toplevel
|
root = rev-parse --show-toplevel
|
||||||
dir = !git root | sed 's/$/\\/.git/g'
|
dir = !git root | sed 's/$/\\/.git/g'
|
||||||
[rerere]
|
|
||||||
enabled = true
|
|
||||||
[code]
|
|
||||||
editor = kate
|
|
||||||
[github]
|
|
||||||
user = Xerus2000
|
|
||||||
[ghi]
|
|
||||||
token = 32ae6d2b42aa78d823cfbd62a3ed765bf14c8b44
|
|
||||||
[diff]
|
|
||||||
tool = meld
|
|
||||||
[filter "lfs"]
|
[filter "lfs"]
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
required = true
|
required
|
||||||
clean = git-lfs clean -- %f
|
|
||||||
|
|
|
@ -1,25 +1,23 @@
|
||||||
# User-specific stuff
|
# IDEA
|
||||||
|
## User-specific files
|
||||||
**/.idea/**/workspace.xml
|
**/.idea/**/workspace.xml
|
||||||
**/.idea/**/tasks.xml
|
**/.idea/**/tasks.xml
|
||||||
**/.idea/**/vcs.xml
|
**/.idea/**/vcs.xml
|
||||||
**/.idea/dictionaries
|
**/.idea/dictionaries
|
||||||
**/.idea/inspectionProfiles
|
**/.idea/inspectionProfiles
|
||||||
**/.idea/.name
|
**/.idea/caches
|
||||||
**/.idea/markdown-*
|
**/.idea/markdown-*
|
||||||
**/.idea/compiler.xml
|
**/.idea/compiler.xml
|
||||||
**/.idea/misc.xml
|
**/.idea/misc.xml
|
||||||
**/.idea/modules.xml
|
**/.idea/modules.xml
|
||||||
**/.idea/caches
|
|
||||||
**/.idea/encodings.xml
|
**/.idea/encodings.xml
|
||||||
**/.idea/kotlinScripting.xml
|
**/.idea/kotlinScripting.xml
|
||||||
**/.idea/jarRepositories.xml
|
**/.idea/jarRepositories.xml
|
||||||
|
**/.idea/.name
|
||||||
## Unecessary IDEA stuff
|
|
||||||
*.iws
|
|
||||||
**/*.iml
|
**/*.iml
|
||||||
out/
|
#*.iws
|
||||||
|
|
||||||
# Sensitive or high-churn files
|
## Sensitive or high-churn files
|
||||||
**/.idea/**/dataSources/
|
**/.idea/**/dataSources/
|
||||||
**/.idea/**/dataSources.ids
|
**/.idea/**/dataSources.ids
|
||||||
**/.idea/**/dataSources.xml
|
**/.idea/**/dataSources.xml
|
||||||
|
@ -28,11 +26,10 @@ out/
|
||||||
**/.idea/**/dynamic.xml
|
**/.idea/**/dynamic.xml
|
||||||
**/.idea/**/uiDesigner.xml
|
**/.idea/**/uiDesigner.xml
|
||||||
|
|
||||||
# Gradle
|
# Build
|
||||||
**/.idea/**/gradle.xml
|
**/.idea/**/gradle.xml
|
||||||
**/.idea/**/libraries
|
**/.idea/**/libraries
|
||||||
.gradle/
|
**/.gradle/
|
||||||
build/
|
build/
|
||||||
|
out/
|
||||||
# Build
|
|
||||||
.kotlintest
|
.kotlintest
|
||||||
|
|
Loading…
Reference in New Issue