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 目录中获取工作目录更改的补丁。我知道在 SVN 中获取补丁的方法,但在 git 中我不知道如何获取它。请帮忙
一个简单git diff的生成一个补丁,可以通过patch一些调整(例如使用--strip)与大多数工具一起应用。当然git apply,如果可用,它将是应用此类补丁的首选工具。
git diff
patch
--strip
git apply