gitgraph.js
gitgraph.js copied to clipboard
Go back to a specific commit by Id, then put on another action, like branch out
Is there a way that we can go back to a committed commit on a branch then perform an action on the commit, like create a branch.
alternatively, if we can have a reference to a specific commit and and make change on top of the commit, that would work as well
I was worried that parallel branching might be difficult when I first read this issue, but it seems this is not a problem as long as you create a branch at the right time.
You can then assign it to a variable and keep that variable around, then later add commits to that branch. After all this is just a simulation of git history, you can play with the scenario to make it work.