git branch --list --author=tianyz 但是报错 error: unknown option `author=tianyz'
时间: 2024-02-23 22:00:18 浏览: 156
git-rewrite-author:轻松重写git存储库的作者提交者历史记录
非常抱歉,我的回答有误。正确的命令应该是:
```
git branch --list --author=<username>
```
请替换 `<username>` 为要查找的人的用户名,例如:
```
git branch --list --author=tianyz
```
这样就可以列出该用户创建的所有分支了。再次抱歉给您带来的困扰。
阅读全文