is there a best approach for resolving merge conflicts in notes branch(git-notes) of git. The usual practice of doing a
git pull --rebase origin refs/notes/commits:refs/notes/commits
does not work. The approach which i tried was
git checkout refs/notes/commits
git fetch origin refs/notes/commits:refs/notes/origin/commits
git merge FETCH_HEAD
git update-ref refs/notes/commits
but it creates merge conflicts and disrupts the history. Please help. Immediate help would be appreciated. Thanks