migration
This commit is contained in:
24
_shared/git/.gitconfig
Normal file
24
_shared/git/.gitconfig
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user