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 push を行わずにいくつかのコミットを行いました。その後、私は git push を行い、これらのローカルのみのコミットが見つからないことを知りました。リモートリポジトリにプッシュしていないコミットをどうにかして見つけることはできますか?
git log --oneline --all現在のブランチの履歴にない場合でも、リポジトリにあるすべてのコミットを表示するために使用できます。
git log --oneline --all
参照:git log manpage