@JPDev@programming.dev to Programmer Humor@programming.dev • 8 months agoRebase Supremacyprogramming.devimagemessage-square229fedilinkarrow-up11.13Karrow-down122
arrow-up11.11Karrow-down1imageRebase Supremacyprogramming.dev@JPDev@programming.dev to Programmer Humor@programming.dev • 8 months agomessage-square229fedilink
minus-square@merthyr1831@lemmy.worldlinkfedilink9•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