找出上次使用变量的时间从 git 存储库中删除
Find out when the last use of variable was removed from the git repo
我的代码中有一个未使用的变量,我想知道事情是怎么变成这样的。我可以使用 git grep(或其他工具)轻松找出答案吗?
git log -Svarname
其中 varname
是变量的名称。
见https://git-scm.com/docs/git-log#git-log--Sltstringgt:
寻找改变文件中指定字符串(即 addition/deletion)出现次数的差异。
我的代码中有一个未使用的变量,我想知道事情是怎么变成这样的。我可以使用 git grep(或其他工具)轻松找出答案吗?
git log -Svarname
其中 varname
是变量的名称。
见https://git-scm.com/docs/git-log#git-log--Sltstringgt:
寻找改变文件中指定字符串(即 addition/deletion)出现次数的差异。