github - Get full activity log (not commit log) for a local git repo -
i working on personal project gitty, unofficial client git. uses git command line output show necessary data. want plot graph gitk
git repo using (gitgraphjs)[http://gitgraphjs.com] , want output showing activities
initial commit - master more commit - master created new branch develop #branch created more commits in master - master added bla bla - develop merged master , develop #branch merged commit - master
i tried using git log --all --oneline
, git reflog
didn't gave necessary data when particular branch created. can parse git log --graph --oneline
output don't think that's right way of doing it.
i want know command should use or there others way plotting graph.
Comments
Post a Comment