5 ms·
Step 3 can be simplified slightly be doing git fetch && git rebase origin/main. No need to check out the local main.
by notJim 2y ago
Step 3 can be simplified slightly be doing git fetch && git rebase origin/main. No need to check out the local main.
- blcArmadillo 2y agoOr: git pull --rebase origin main
- rednafi 2y agoTIL. Thank you.