process-handbook
process-handbook copied to clipboard
See history of a git project
On the section "ask to see the client project" we can add another point on how to see the history of a git project with the git log command. This command can takes a few interesting options (eg oneline, graph) which can help to discover and have a global view of the project.
git log

git log --oneline

git log --oneline --graph

git log --oneline --merges --first-parent master

git log --online --merges --first-parent master | wc -l

https://www.npmjs.com/package/git-file-history
Of interest?
thanks for the link @rub1e :+1:
git-file-history looks fancy.
However for this I'd like to avoid installing another npm package and get the overview of a project with just a few command lines