在工作时,有时候想查看某次的提交修改了哪些的内容。
我们首先可以git log显示历史的提交列表:
之后我们用git show <commit-hashId> 便可以显示某次提交的修改内容
同样 git show <commit-hashId> filename 可以显示某次提交的某个内容的修改信息。
原文地址:https://www.cnblogs.com/mkl34367803/p/9219913.html
时间: 2024-10-27 05:40:01
在工作时,有时候想查看某次的提交修改了哪些的内容。
我们首先可以git log显示历史的提交列表:
之后我们用git show <commit-hashId> 便可以显示某次提交的修改内容
同样 git show <commit-hashId> filename 可以显示某次提交的某个内容的修改信息。
原文地址:https://www.cnblogs.com/mkl34367803/p/9219913.html