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.
我们有一个免费的(5 个用户)Bitbucket 帐户,最近我向另一个团队的另一个用户授予了写入权限。我搜索了 Bitbucket 文档,但找不到如何监控另一个用户活动(比如他是否克隆了我们的存储库以及何时克隆)。有人可以在这方面提供帮助吗?
只需使用 GIT 命令。在 BitBucket 的顶部菜单中有一个“终端”按钮。只需单击它以打开终端,然后键入任何 GIT 命令。
git log --author="JonDoe"
会提示相关用户的活动。
请参阅如何查看仅包含一个用户提交的 git 日志?