Bevara historik med merge commits.
Ett sÀkrare, nybörjarvÀnligt tillvÀgagÄngssÀtt som bevarar historik och undviker force pushing.
# feature â develop
git checkout develop
git pull origin develop
git checkout feature
git merge develop --no-commit --no-ff
# resolve conflicts, if any
git commit -am 'merged with develop'
git push origin feature