migration

This commit is contained in:
2026-02-14 08:35:47 +02:00
commit f1df2dd897
46 changed files with 2595 additions and 0 deletions

24
_shared/git/.gitconfig Normal file
View File

@@ -0,0 +1,24 @@
[user]
name = Tomas Mirchev
email = contact@tomastm.com
[core]
editor = nvim
excludesfile = ~/.gitignore
[init]
defaultBranch = main
[pull]
rebase = true
[push]
default = current
autoSetupRemote = true
[remote]
pushDefault = origin
[alias]
amend = commit --amend --no-edit
rename = branch -m
st = status
unstage = reset HEAD
last = log -1 HEAD
tags = tag -l
undo = reset --mixed HEAD~1