git pullしようたら下記エラー
error: Your local changes to the following files would be overwritten by merge:
ファイル名
Please commit your changes or stash them before you merge.
ローカルのコミットしていない変更があった時に、pullすると上書きされてしまうよと言っている
対処方法
git stash save “コメント”
stashで一時的に変更を退避する
退避した後に再度pullすると正常にpullできる
コメントを残す