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 log | grep "chakra" -A3 -B3
分别为每个分支。
有没有一种简单的方法可以找出一个人所做的所有承诺。
你可以做
git log --author="chakra" --since=4.days --all
这将为您提供过去 4 天在所有分支上的提交。
像这样:
git log --author="chakra"