From 033f88e8bb581c1d18a52de7f3dab0c05af8b2de Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Thu, 27 Oct 2022 23:41:07 -0400 Subject: [PATCH] docs(git): Regenerate --- docs/gitgraph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gitgraph.md b/docs/gitgraph.md index 878d1b3c1..baa75126e 100644 --- a/docs/gitgraph.md +++ b/docs/gitgraph.md @@ -165,7 +165,7 @@ In this example, we have given custom tags to the commits. Also, see how we have ### Create a new branch -In Mermaid, in-order to create a new branch, you make use of the `branch` keyword. You also need to provide a name of the new branch. The name has to be unique and cannot be that of an existing branch. A branch name that could be confused for a keyword must be quoted within `""`. Usage example: `branch develop` +In Mermaid, in-order to create a new branch, you make use of the `branch` keyword. You also need to provide a name of the new branch. The name has to be unique and cannot be that of an existing branch. A branch name that could be confused for a keyword must be quoted within `""`. Usage examples: `branch develop`, `branch "cherry-pick"` When Mermaid, reads the `branch` keyword, it creates a new branch and sets it as the current branch. Equivalent to you creating a new branch and checking it out in Git world.