initial commit
This commit is contained in:
32
git/.gitconfig
Normal file
32
git/.gitconfig
Normal file
@@ -0,0 +1,32 @@
|
||||
[user]
|
||||
name = stefiosif
|
||||
email = si.iosifidis@gmail.com
|
||||
|
||||
[core]
|
||||
editor = code --wait
|
||||
autocrlf = input
|
||||
excludesfile = ~/.gitignore_global
|
||||
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
||||
[push]
|
||||
default = current
|
||||
autoSetupRemote = true
|
||||
|
||||
[pull]
|
||||
rebase = true
|
||||
|
||||
[merge]
|
||||
tool = code
|
||||
conflictstyle = diff3
|
||||
|
||||
[diff]
|
||||
algorithm = patience
|
||||
colorMoved = default
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
|
||||
[credential]
|
||||
helper = store
|
||||
22
git/.gitignore_global
Normal file
22
git/.gitignore_global
Normal file
@@ -0,0 +1,22 @@
|
||||
# ─── OS ─── #
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# ─── editors ─── #
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# ─── rust ─── #
|
||||
target/
|
||||
|
||||
# ─── node ─── #
|
||||
node_modules/
|
||||
|
||||
# ─── env / secrets ─── #
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
Reference in New Issue
Block a user