1

Is there a way to have this display inside the terminal ? : Network Graph

I know a similar command but it does not show the same informations,

git log --graph --abbrev-commit --decorate --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)' --all

from this question but it does not show the same things as the Network Graph, see

enter image description here

Liam
  • 27,717
  • 28
  • 128
  • 190
David Alvarez
  • 1,226
  • 11
  • 23

1 Answers1

0

I believe the following will do what you want: git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all

aThorp96
  • 26
  • 2