Graphical dynamic view of a git revision tree -


for small repositories quite satisfied git l command:

[alias]      l = log \      --all \      -n30 \      --graph \      --abbrev-commit \      --decorate \      --date=relative \      --format=format:'%c(bold blue)%h%c(reset) - %c(bold green)(%ar)%c(reset) %c(white)%s%c(reset) %c(dim white)- %an%c(reset)%c(bold yellow)%d%c(reset)' 

unfortunately, large repositories , hundreds of branches tree becoming wide , tall general overview. did not find solution in gitk , not know other utilities.

i looking simple tool generates html dynamic revision tree (that can folded) using instance cytoscape or dendrogram chart d3.js.

is there kiss tool this?

while not kiss, might want have @ gource, gives dynamic graphical representation of worked on @ time. unfortunately shows progression of 1 branch. have looked @ tools @ the git homepage?


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -