I have master branch let's say m and feature branch f. After some commits in feature branch now I want to rebase mater branch into my feature branch. Following is the sequence of the commands I followed
- git checkout m
- git pull
- git checkout f
- git rebase m Now I got conflicts in one file which I resolved manually and then fired command
- git add <conflicted_file>
- git rebase --continue
After firing this command it shows error as COMMIT_EDITMSG.swp already exists! I am not able to understand what action should I take for .swp file. Editor shows different options like Q for quit, E for edit anyway, A for abort, R for recover Can anyone explain which action I should take?