いくつかの変更を加えてからコミットしましたが、プッシュしようとすると、すべてが最新であるというエラーが発生しました。
なぜこれが起こるのでしょうか?注意として、昨日はいくつかのマージの問題があり、今日はgit checkout some_version_numberを実行する必要がありました
ここで何がうまくいかないのですか?ありがとう!
git status からの出力は次のとおりです。
macoss-MacBook-Pro-10:Marketing owner12$ git status
# Not currently on any branch.
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: Marketing/en.lproj/MainStoryboard_iPad.storyboard
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# Marketing.xcodeproj/project.xcworkspace/xcuserdata/owner12.xcuserdatad/
そして、git checkout master を実行してブランチに移動しようとすると、次のようになります。
macoss-MacBook-Pro-10:Marketing owner12$ git push origin master
Password for 'https://genadinik@bitbucket.org':
Everything up-to-date
macoss-MacBook-Pro-10:Marketing owner12$ git checkout master
error: Your local changes to the following files would be overwritten by checkout:
Marketing/en.lproj/MainStoryboard_iPhone.storyboard
Please, commit your changes or stash them before you can switch branches.
error: The following untracked working tree files would be overwritten by checkout:
Marketing.xcodeproj/project.xcworkspace/xcuserdata/owner12.xcuserdatad/UserInterfaceState.xcuserstate
Please move or remove them before you can switch branches.