代码之家  ›  专栏  ›  技术社区  ›  Phillip Ngan

如何找到谁做了一个吉特樱桃采摘[[副本]

git
  •  0
  • Phillip Ngan  · 技术社区  · 7 年前

    给定一个经过精心挑选的提交,git命令可以显示谁执行了这个操作 git cherry-pick

    1 回复  |  直到 7 年前
        1
  •  6
  •   torek    7 年前

    任何打印日志数据的东西都可以打印作者和

    git show --pretty=fuller <hash>
    

    比如说,威尔会做这个把戏,就像威尔一样:

    git log --no-walk --pretty=fuller <hash>
    

    ( git show 也将产生与父级的差异。