diff --git a/src/tools/git-memo/git-memo.content.md b/src/tools/git-memo/git-memo.content.md index 6783ad86..b2830ef7 100644 --- a/src/tools/git-memo/git-memo.content.md +++ b/src/tools/git-memo/git-memo.content.md @@ -35,6 +35,26 @@ Add new modifications to the last commit git commit --amend --no-edit ``` +## Branches + +Lists all local branches in your repository (use -a for local and remote branches) + +```shell +git branch +``` + +Switch to an existing branch + +```shell +git switch [branch name] +``` + +Create a new branch + +```shell +git checkout -b [branch name] +``` + ## I’ve made a mistake Change last commit message diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts index f65ffe07..5dcae4e6 100644 --- a/src/tools/git-memo/index.ts +++ b/src/tools/git-memo/index.ts @@ -6,7 +6,7 @@ export const tool = defineTool({ name: translate('tools.git-memo.title'), path: '/git-memo', description: translate('tools.git-memo.description'), - keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'], + keywords: ['git', 'push', 'force', 'pull', 'commit', 'branch', 'switch', 'checkout', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'], component: () => import('./git-memo.vue'), icon: BrandGit, });