[git-users] Extract commit/branches informations ?

2016-01-16 Thread Joris Mulliez
Hi all, I want to build myself a graph of my git repository, with this lib : http://gitgraphjs.com/ My problem is how to get all the data to construct my graph. I tried some "git log" arguments, but I'm not able to find right branches for the changeset. My aim is to build a "git-flow" chart (l

Re: [git-users] Extract commit/branches informations ?

2016-01-16 Thread Gergely Polonkai
Hello, it seems that gitgraph.js can not do exactly what you want. If I were you, I would create some JSON data from the repository with all the commits and branches (e.g. with some git-log magic), then process this JSON data and use gitgraph to visualize it. Good luck! Best, Gergely Gergely P

Re: [git-users] Extract commit/branches informations ?

2016-01-16 Thread Joris Mulliez
Hi, I know gitgraph.js is just a tool for "draw" the graph. My question is how to get all branches correctly, my tests with git log don't work for the "gitflow" flow. Because branches are closed after merge I think... I'm trying now to make a service running with hook post-receive on the main