How to generate a github-like Impact Graph?

前端 未结 2 530
傲寒
傲寒 2021-02-03 12:34

Is there some program out there (or some magical git plugin I\'ve missed) to get an impact graph or something similar from a git repo without going through github? I\'m unsure w

相关标签:
2条回答
  • 2021-02-03 12:50

    This SO question provides some answers:

    git log --author="<authorname>" --pretty=tformat: --numstat
    

    and for the graph itself, I know about this jQuery program (but I haven't tested it), based on json-formatted data. Illustrated here, reported by this message)

    0 讨论(0)
  • 2021-02-03 13:05

    Okay, I too, came to this question hoping to find an easy answer and found none.

    Fear not! I have fixed the problem.

    Check out https://github.com/jtolds/git-impact

    New project, generates nice interactive impact graphs from a git repo.

    (x-posted to Is there an "impact graph" tool for non-GitHub projects?, should these questions be merged?)

    0 讨论(0)
提交回复
热议问题