检查 git pull 合并后的更改
是否可以在 git pull 后自动合并带来的更改中播放 git diff ?
通常,如果有任何冲突,我可以使用正常的 git diff 检查那些冲突,但不知道拉取成功后如何执行(并且更改会自动提交)
is it possible to play a git diff in the changes brought by the automatic merge after a git pull
?
Usually, if there are any conflicts i can check on those using normal git diff, but no idea how to do it when the pull was successful (and the changes were automatically commited)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您刚刚完成 git pull ,您可以通过以下方式查看当前
HEAD 和前一个 HEAD 之间的差异:
If you've just done the
git pull
you can look the difference between the currentHEAD
and the previous one with something like: