Hacker News new | ask | show | jobs
by notJim 720 days ago
Step 3 can be simplified slightly be doing git fetch && git rebase origin/main. No need to check out the local main.
1 comments

Or: git pull --rebase origin main
TIL. Thank you.