热门IT资讯网

git小技巧:git blame && git show 查看某一行代码的修改历史

发表于:2024-11-26 作者:热门IT资讯网编辑
编辑最后更新 2024年11月26日,先查看某行代码由谁写的,在哪个commit中提交的:git blame file_namegit blame -L 58,100 KeyboardActivity.java其显示格式为:commit

先查看某行代码由谁写的,在哪个commit中提交的:

git blame file_namegit blame -L 58,100 KeyboardActivity.java

其显示格式为:

commit ID | 代码提交作者 | 提交时间 | 代码位于文件中的行数 | 实际代码

类似于下面这样:

这样,我们就可以知道commit ID了,然后使用命令:Git show commitID来看~


0