我试图获得一个存储库的历史记录,但是结果只在一行文本中返回给我。我使用的命令:
cmd = f'git log --all --grep="fixed bug"'
我希望得到的结果是:
commit 337f4f4e798ea675cd57348212857ce051e857ffAuthor: Vinod... commit 0b5a4823a963bd898b3979de8cce67513a1f83e5Author: Lofdw Kuma...
ybzsozfc1#
试试这个:
git log --pretty="Commit: %H %nAuthor: %an"
这个美丽的网站有很多关于这个主题的信息:https://git-scm.com/docs/pretty-formats
1条答案
按热度按时间ybzsozfc1#
试试这个:
这个美丽的网站有很多关于这个主题的信息:
https://git-scm.com/docs/pretty-formats