explain-git-with-d3
explain-git-with-d3 copied to clipboard
Use D3 to visualize simple git branching operations.
On the git merge example, enter the following commands ``` git checkout dev git merge master git checkout master git merge --no-ff dev ``` This results in the error `branchStartCommit...
starting with http://onlywei.github.io/explain-git-with-d3/#fetchrebase: git fetch Fetched 3 commits on master. git rebase master git rebase my-branch Already up-to-date. git checkout master git checkout master git commit git rebase origin/master git...
On osx and windows, `head` is the same as `HEAD`. And as of git 1.8.5, `@` is also the same.
The following screenshot illustrates the bug:  The gray box representing the `origin/dev` ref should be updated after pushing, but instead it requires...
In the [`git checkout` example](http://onlywei.github.io/explain-git-with-d3/#checkout), I tried to type `git checkout bb92` to check out the commit labeled “bb92e0e…” on the graph. I got the error “Cannot find commit: bb92”....
This would make the [`git checkout` example](http://onlywei.github.io/explain-git-with-d3/#checkout) clearer, when you `git checkout bb92e0e` like it suggests. Right now the only difference from `git checkout master` is the “Current Branch” text...
@maya did some very cool work on the style of the page: https://github.com/maya/explain-git-with-d3 I changed some text to make it more accessible to a git novice. If you're open to...
Is there a way to exit Zen mode (without refreshing the browser)? If so, I haven't been able to figure it out.