Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 507 Bytes

gitconfig.md

File metadata and controls

12 lines (11 loc) · 507 Bytes

Setup git

git config --global core.editor $(which nvim) &&
git config --global init.defaultBranch main &&
git config --global user.email "email@example.com" &&
git config --global user.name "Cristhian Melo" &&
git config --global alias.s "status -sb" &&
git config --global alias.a "add" &&
git config --global fetch.prune true &&
git config --global alias.l "log --pretty=format:\"%Cgreen%h %Creset%cd %Cblue[%cn] %Creset%s%C(yellow)%d%C(reset)\" --graph --date=relative --decorate --all"