feat(git): added git config

This commit is contained in:
Sebastian Rust
2025-11-02 10:06:17 +01:00
parent b00b865f69
commit 8cd3944373
4 changed files with 49 additions and 3 deletions

View File

@@ -102,8 +102,6 @@ backups/** # ignore the contents of backups folder but not the folder itself
.config/fontconfig
.config/freerdp
.config/fyne
.config/git/gitignore
.config/git/ignore.d
.config/glib-2.0
.config/go
.config/google-chrome-for-testing
@@ -316,4 +314,4 @@ Projects
Ressources
Templates
Uni
Work
Work

19
dot_config/git/config Normal file
View File

@@ -0,0 +1,19 @@
[user]
email = srust@posteo.net
name = Sebastian Rust
[init]
defaultBranch = main
[core]
excludesfile = /home/jack/.config/git/gitignore
[credential]
helper = store
[merge]
tool = meld
[diff]
tool = meld
[difftool]
prompt = false
[pull]
rebase = false
[push]
autoSetupRemote = true

28
dot_config/git/gitignore Normal file
View File

@@ -0,0 +1,28 @@
# Latex
*.auxlock
*.bbl
*.blg
*.run.xml
*.out
*.bcf
*.fdb_latexmk
*.code-workspace
*.tdo
*.dvi
*.fls
*.out.ps
build/
*.aux
*.toc
*.xmpdata
*.xmpi
*.synctex.gz
#general
*.nocommit
*.vscode/*
.pre-commit-config.yml
.pre-commit-config.yaml
*.directory
*.bak
# uv
.python-version

View File

@@ -0,0 +1 @@
.python-version