如何获取这个 git 脚本制作的补丁列表?
从 此页面
我发现
cd ${YOUR_PATH}/L27.12.1-P2/kernel/android-2.6.35
git fetch http://review.omapzoom.org/p/kernel/omap refs/changes/22/13722/2 && git cherry-pick FETCH_HEAD
当我运行此程序时,它会生成 paches 并显示有多少个文件改变了。
但是,如果我想通过运行这个程序来了解哪些文件被更改以及哪些行被更改,该怎么办?
我怎样才能得到这些信息?
from this page
i found
cd ${YOUR_PATH}/L27.12.1-P2/kernel/android-2.6.35
git fetch http://review.omapzoom.org/p/kernel/omap refs/changes/22/13722/2 && git cherry-pick FETCH_HEAD
when i run this it makes paches and shows me how manny files are changed.
But what if i want to know by running this which files are changed and what lines are changed?
How can i get that info?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够运行
'git show'
,它将显示从当前HEAD
到上一次提交的所有更改线级
。You should be able to run
'git show'
, which will show all the changes from the currentHEAD
to the previous commiton a line level
.