Files
provision/config/gitconfig
2025-11-23 09:07:39 -08:00

29 lines
442 B
Plaintext

[user]
name = YOUR_NAME
email = YOUR_EMAIL
[core]
excludesfile = ~/.gitignore_global
editor = nano
[init]
defaultBranch = main
[pull]
rebase = false
[push]
default = simple
[alias]
st = status
co = checkout
br = branch
ci = commit
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
last = log -1 HEAD
unstage = reset HEAD --
[color]
ui = auto