其他分享
首页 > 其他分享> > git command —— git log show graph

git command —— git log show graph

作者:互联网

$ git log --oneline --graph

  

查询 git log的 图示

 

 

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

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

  

 

 查询 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

标签:git,log,--,graph,查询,command,Cmds
来源: https://www.cnblogs.com/panpanwelcome/p/15895825.html