
gitのエラーでcannot do a partial commit during a merge.が出た時の対処法
DRANK
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-cokelae...