Skip to content

Instantly share code, notes, and snippets.

@danhyun
Last active August 29, 2015 14:16
Show Gist options
  • Save danhyun/13d6e66a7cae6255a625 to your computer and use it in GitHub Desktop.
Save danhyun/13d6e66a7cae6255a625 to your computer and use it in GitHub Desktop.
GraphViz graph example
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
digraph git_objects {
     commit -> tree;
     tree -> file1;
     tree -> file2;
     tree -> file3;
     tree -> filen;
}
<img src="git_objects.svg" alt="git objects">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment