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 diff --diff-filter=AM --name-only 59ade6e..c1fc4d8
59ade6e ハッシュは、すべてのファイルを追加したコミットです (私の最初のコミット)。
しかし、コマンドを実行すると、これらの追加ファイルが含まれていないようです。この diff にハッシュ リビジョンを実際に含めるにはどうすればよいですか?
がルート コミットの場合59ade6e、おそらく次のコマンドを探しています。
59ade6e
git ls-tree --name-only -r 59ade6e
~1次の表記を使用します。
~1
git diff --diff-filter=AM --name-only 59ade6e~1..c1fc4d8
これにより、前のコミットと59ade6eとの間の差分が行われますc1fc4d8
c1fc4d8