explain-git-with-d3 icon indicating copy to clipboard operation
explain-git-with-d3 copied to clipboard

Use D3 to visualize simple git branching operations.

Results 40 explain-git-with-d3 issues
Sort by recently updated
recently updated
newest added

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. ![image](https://cloud.githubusercontent.com/assets/657447/2586722/dca94276-ba08-11e3-8524-85e60f67bf72.png)

bug

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...

bug

It seems like it's grey'ed out commit `fd94e4e` I created in a branch and then merged. See the attached image below. ![screen shot 2014-03-24 at 2 21 09 pm](https://f.cloud.github.com/assets/140856/2503341/47419946-b381-11e3-8afa-63b966ab58cb.png) 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...