From bdc2889ddbf84e96d4ce431e31306596ec423ee4 Mon Sep 17 00:00:00 2001 From: Tobias Date: Sun, 14 Jul 2024 11:31:25 +0200 Subject: [PATCH] Update git-memo.content.md: remove : --- src/tools/git-memo/git-memo.content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/git-memo/git-memo.content.md b/src/tools/git-memo/git-memo.content.md index fd21e958..b2830ef7 100644 --- a/src/tools/git-memo/git-memo.content.md +++ b/src/tools/git-memo/git-memo.content.md @@ -37,19 +37,19 @@ git commit --amend --no-edit ## Branches -Lists all local branches in your repository (use -a for local and remote branches): +Lists all local branches in your repository (use -a for local and remote branches) ```shell git branch ``` -Switch to an existing branch: +Switch to an existing branch ```shell git switch [branch name] ``` -Create a new branch: +Create a new branch ```shell git checkout -b [branch name]