Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Eclipse 中的特定模块的修复程序中找到所有数据缺陷,例如 id 号、严重性和代码行。
有没有一种使用 CVS、GIT、SVN 或 Bugzilla 的快速方法可以做到这一点?
您可以过滤 git log 输出:
git log PATH/IN/REPO
或对于特定文件:
git log PATH/IN/REPO/SOURCE.FILE
要查看实际的线路变化,请使用-p:
-p
git log -p PATH