|
|
|
|
|
by schlupa
1774 days ago
|
|
That's not how you do it. git checkout master
git pull => fetch and merge the new things on master
git checkout develop => go back to your work branch
git rebase master => simple rebase, no squash, no nothing. The conflicts are the same as you'd get with git merge
do not forget to force push the changes of your branch git push origin --force develop => to update your branch on the server
|
|