gitでcheckoutしようとすると以下のようなエラーが。。。
$ git checkout develop
error: Your local changes to the following files would be overwritten by checkout:
xxx/__pycache__/urls.cpython-37.pyc
xxx/__pycache__/views.cpython-37.pyc
xxx/__pycache__/urls.cpython-37.pyc
Please commit your changes or stash them before you switch branches.
Aborting
よくわからないままstashを実行。
$ git stash
なんかできてそう。
とりあえずpullだな。
$ git pull
From https://github.com/xxxxx/xxxxx
* branch master -> FETCH_HEAD
Already up to date.
これは。。。
$ git checkout
Switched to branch 'develop'
おおおおおおお!
なんで直ったかわからんができた。
これをやる前にも
.git/index.lock
を削除するなどいろいろやったので原因がわからない。