Advertisement

Your Ad could be here. I want to connect my readers to relavant ads. If you have a product targeted at developers, let's talk. [email protected]

Git can be a bit tricky to get configured correctly. I often stumble into config issues weeks after setting up a new machine that I did not even notice. These are my notes to remind me how I configure git.

Identity


git config --global user.name "John Doe"
git config --global user.email [email protected]

rebase

editor


git config --global core.editor nvim

default branch


git config --global init.defaultBranch main

push to current bransh wihtout setting upstream


git config --global push.default current

Autostash


git config pull.rebase true
git config rebase.autoStash true