本文主要是介绍Git之git diff生成patch用法(一),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.git diff生成patch用法
# git diff ./ > test.patch //生成patch# patch -p1 < test.patch //打patch# git apply test.patch //也可用这个命令打patch注意:使用git diff产生的patch都应该在执行patch 命令时,指定-p1,当位置是【在哪里制作的patch,就在哪里 执行】
这篇关于Git之git diff生成patch用法(一)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!