PR창에서 conflict메세지 확인후,
git checkout <feature-branch-name>
git pull origin <development-branch-name>
pull
은 fetch 와 merge를 실행하며, conflict이 있는 상태에서는 merge는 fail한다.
로컬에서 conflict 해결.
git add .
git commit -m 'resolved PR #nn merge conflicts'
git push origin <feature-branch-name>
github 에서 해결됬는지 확인.
참고링크: https://github.com/AgileVentures/MetPlus_PETS/wiki/Resolving-Pull-Request-merge-conflicts