クリーンバージョンのコードを保存するブランチを開発するためにチェックアウトします。
git checkout develop
それから私は引っ張ろうとします:
git pull origin develop
そこで、私はこのメッセージを受け取りました:
error: Your local changes to the following files would be overwritten by merge:
MyApp.xcodeproj/project.pbxproj
Podfile
Podfile.lock
Please, commit your changes or stash them before you can merge.
Aborting
これらのファイルの変更をコミットしたくないので、それに対処するための最良の方法は何ですか?以下のように、ファイルのリセットHEADは機能しますか?
git reset HEAD MyApp.xcodeproj/project.pbxproj
git reset HEAD Podfile
git reset HEAD Podfile.lock
よろしくお願いします