Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はgit log --allすべてのコミットを表示するためにやっていますが、最後は表示されていません...
git log --all
でも、プッシュするとEverything up-to-date、と表示され、最後のコミットをプッシュできると期待していました。
Everything up-to-date
私はgitshow-branchを実行しましたが、次のように表示されます。
[master] Merge branch 'master' of bitbucket.org:jargd/contract
何か助けはありますか?
* (no branch)
「切り離されたHEAD」を意味します
そのコミットでブランチを作成できます。
git checkout -b newBranch
そして、そのブランチをプッシュします。