Simple guide to get started with Git. Configure author and email address to be used with your commits git config --global user.name "John Doe"
git config --global user.email [email protected]
Cr…
It is a common practice to rebase the main branch to your current branch when there is a change or rebasing to squash multiple commits into single to group the certain changes together. Until you forc…