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,并在 assembla 中托管存储库。我想跟踪我在 .log 文件中所做的提交。有人能指出我这样做的正确方向吗?我已经在谷歌上搜索了一段时间,但没有找到任何可以让我开始的东西。
谢谢!
您可以简单地使用 git log 并将其重定向到文件。
git log --pretty=format:'%h : %s' --graph > commit_log.log
这将为您提供提交图表的摘要。