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 reset --merge
一部のファイルに対する最新の変更を失いましたが、この最後のアクションを元に戻すにはどうすればよいですか?
reflog を見て、以前のコミットを見つけることができます。
git reflog
以前のコミットを見つけたら、sha-1 ハッシュをコピーして、
git reset <commit sha-1> --hard
ただし、失われたものがコミットされていない変更である場合、それらは失われます。