pushをしようとすると以下のエラーコマンドが出る
fatal: cannot do a partial commit during a merge.
##対処法
###変更ファイルを
まずはaオプションをつけて行う。
git commit -a my_filename
それでもダメならiオプション(include)を付けて実行
git commit -i my_filename
こちらを参考にしました。
http://thomas-cokelaer.info/blog/2015/02/git-error-cannot-do-a-partial-commit-during-a-merge/