git config --global user.name "John Doe"
git config --global user.email [email protected]
git config --global core.editor vim
git config --global init.defaultBranch main
git config --list
git status
git log
git log --oneline
git branch -d localBranchName
git branch -D localBranchName
git push origin --delete remoteBranchName
git fetch -p
git branch --all
git remote -v
git checkout -- .
git checkout --theirs .
git add .
git rm --cached .env
git rm -r --cached .