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.
是否可以在我的所有 git 存储库中查看我最近在本地计算机上的所有 git 活动?我通常使用不同的 git 托管解决方案处理多个项目(所以我不能使用 GitHub 的活动监视器),我想回顾一下我最近的工作,以准确记录我正在做的事情。
谢谢!
我不确定您的所有 git 活动是否有一个一站式商店...我会进入您担心的任何项目目录并运行 git log --author=yourName以查看您最近的更改。
git log --author=yourName
请参阅如何查看仅包含一个用户提交的 git 日志?