You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Simulate git commands with Gitgraph API.constmaster=gitgraph.branch("master");master.commit("Initial commit");constdevelop=gitgraph.branch("develop");develop.commit("Add TypeScript");constaFeature=gitgraph.branch("a-feature");aFeature.commit("Make it work").commit("Make it right").commit("Make it fast");develop.merge(aFeature);develop.commit("Prepare v1");master.merge(develop).tag("v1.0.0");}}
The text was updated successfully, but these errors were encountered:
https://github.com/nicoespeon/gitgraph.js/blob/18f6488d12532cd26ed6a4e9ee1da2488c099be0/packages/gitgraph-core/README.md
The text was updated successfully, but these errors were encountered: