git command —— git log show graph

$ git log --oneline --graph

  

查询 git log的 图示

git command —— git log show graph

 

 

查询一段时间内的 某个路径下的 commit:

$ git log --stat --since 2021-12-01 --until 2022-02-13    --branches=*feature/v3.3  Source/CBOP.Cmds.DownloadReport/Cmds

  git command —— git log show graph

 

 查询 who 修改了什么

$ git shortlog -s -n
  2081  123123
  2061  23123132xi
  1975  2323234
  1633  3423423ng
  1290  43234
  1201  x34234u

  

 -n <number>--max-count=<number>

Limit the number of commits to output.

 

-s:author

上一篇:PAT A1141 PAT Ranking of Institutions (25 分) 排序


下一篇:ACM - 最短路 - CodeForces 295B Greg and Graph