JPDev@programming.dev to Programmer Humor@programming.dev · 8 months agoRebase Supremacyprogramming.devimagemessage-square210fedilinkarrow-up11.12Karrow-down122
arrow-up11.1Karrow-down1imageRebase Supremacyprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 8 months agomessage-square210fedilink
minus-squaremerthyr1831@lemmy.worldlinkfedilinkarrow-up10arrow-down1·edit-28 months agoHeres my based af workflow: git checkout -b feature-branch rebase on top of dev whilst working locally git rebase origin/dev-branch && git push -f if i need to fix conflicts with dev-branch during a PR git merge origin/dev
Heres my based af workflow:
git checkout -b feature-branch
rebase on top of dev whilst working locally
git rebase origin/dev-branch && git push -f
if i need to fix conflicts with dev-branch during a PR
git merge origin/dev