Usefull Git Config Settings
git config is the command used to read and write Git settings—preferences that control how Git behaves for everyday operations…
Design – Plan – Write
git config is the command used to read and write Git settings—preferences that control how Git behaves for everyday operations…
Git offers different approaches to integrating changes from one branch into another. Two of the most common methods are merge…
This command basically allows us to copy a single commit from one branch to another. It’s very useful when we…
rebasing If you pull remote changes with the flag --rebase, then your local changes are reapplied on top of the remote…