Is there a way in Git to have a nice commit graph like this gives,
git log --graph --oneline --all --decorate
But with additional information, which would be retrieved from a custom executable?
Something like:
* 69f1774e fix: RD-5673 message ...
* 7174524f [DEPLOYED-DEV1] (origin/master, origin/HEAD, master)
|\
| * 7912bf16 [TESTS OK] fix: RD-5673 ...
| * 916800f7 [FAILED 12]fix: RD-5673 ...
|/
* 9b58498e [DEPLOYED-EUROPE] Merge branch 'feature/RD-5673-seed-the-legacy-ID-generators' into 'master'
|\
...
Use cases:
I would like to know for each commit whether it has been built by the continuous integration, and whether the resulting artifact / image has been pushed;
The log could display labels for the commits which are currently deployed in production environments.
I looked at --pretty=... but that one seems not to have anything dynamic. Or does it?
