To manually rebase. If I want to merge, but there are conflicts:
- on feature branch:
git rebase master
- read the conflicting files. Open it and fix it. Then:
git add modified_file
git rebase --continue
- repeat until no more conflicts, then:
git push --force