onlywei / explain-git-with-d3

Use D3 to visualize simple git branching operations.
MIT License
1.71k stars 390 forks source link

Support HEAD~n #47

Open z33ky opened 8 years ago

z33ky commented 8 years ago

HEAD~n (or more generally <rev>~n) refers to the n-th generation ancestor (see git help gitrevision).

waldyrious commented 6 years ago

Also <rev>^n, for accessing the different parents of a merge commit (and combinations <rev>^2~3 would be nice to have as well).