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 にありますか。ステージングされていない、ステージングされている、コミットされているという 3 つの状態すべてについての回答を探しています。
ありがとう!
git diff <remote-name> -- <filename>
これは、ステージングされた状態とステージングされていない状態の両方で機能するはずです。
コミットされたファイルの場合、
git diff <commit-sha1> <remote-name> -- <filename>