JPDev@programming.dev to Programmer Humor@programming.dev · 8 months agoRebase Supremacyprogramming.devimagemessage-square180fedilinkarrow-up11.1K
arrow-up11.1KimageRebase Supremacyprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 8 months agomessage-square180fedilink
minus-squaremerthyr1831@lemmy.worldlinkfedilinkarrow-up10·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