git如何查看已经commit文件改动内容
2021-09-13 tech git 1 mins 225 字
如果没有commit,使用如下命令:
git diff myfile.txt
如果commit了,使用如下命令:
git diff --cached myfile.txt
查看文件历史版本:
git show e0d599a9807b8ec1ce8271821feb2a90cc8a8e62:app/Console/Commands/TestCommand.php
如果没有commit,使用如下命令:
git diff myfile.txt
如果commit了,使用如下命令:
git diff --cached myfile.txt
查看文件历史版本:
git show e0d599a9807b8ec1ce8271821feb2a90cc8a8e62:app/Console/Commands/TestCommand.php