explain-git-with-d3
explain-git-with-d3 copied to clipboard
Use D3 to visualize simple git branching operations.
I would imagine this to include adding specific url fragment at the end of an url and parsing it at page load to initialize the specific example. What would be...
Right now it doesn't look like detached head is updated.
In a fresh session in the playground: ``` console $ git reset --hard HEAD^ newLoc.tags is undefined ```
I've been thinking it would be very cool to have a version of your app that just sits and watches a real git repo as you make commits, pulls, pushes,...
I assume it thinks it's a remote. A workaround is to use feature-branch naming instead
On master branch after merging a new-created branch named "feature", `git push` will push the branch "feature" to origin master, which is expected to be master. 
hey, just discovered your project via a friend. Looks promising! Reading the readme, I figured out http://www.wei-wang.com/ExplainGitWithD3/ does not work, whereas the other url you mention in your update seems...
To reproduce: 1. Open the **git commit** example 2. Run `git checkout -b newbranch` 3. Run `git commit` 4. Run `git merge master` **Expected Results**: "Already up-to-date". **Actual Results**: It...
It seems like it's grey'ed out commit `fd94e4e` I created in a branch and then merged. See the attached image below.  Unless...
It's a great tool for teaching git. One crucial command that would be nice to have supported is the `git branch -f existing_name` , that allows to move a non-checkedout...