JPDev@programming.dev to Programmer Humor@programming.dev · 1 year agoRebase Supremacyprogramming.devimagemessage-square229linkfedilinkarrow-up11.13Karrow-down122
arrow-up11.11Karrow-down1imageRebase Supremacyprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square229linkfedilink
minus-squaremerthyr1831@lemmy.worldlinkfedilinkarrow-up10arrow-down1·edit-21 year 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