Git - get all commits and blobs they created

后端 未结 6 1273
天涯浪人
天涯浪人 2020-12-05 03:07

Is there a git command that can output for every commit:

  1. id
  2. subject
  3. blobs it created with they path and size (like git ls-tree -l -r &l
6条回答
  •  眼角桃花
    2020-12-05 04:03

    You can get everything but size out of the box. This one is pretty close:

    git log --name-status
    

提交回复
热议问题