mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
Add Branches to Git cheatsheet
This commit is contained in:
parent
76a19d218d
commit
ddf3dd98db
2 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
|||
|
||||
## Configuration
|
||||
|
||||
Set the global config
|
||||
|
@ -35,6 +36,26 @@ Add new modifications to the last commit
|
|||
git commit --amend --no-edit
|
||||
```
|
||||
|
||||
## Branches
|
||||
|
||||
Lists all local branches in your repository (use -a for remote 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
|
||||
|
@ -74,4 +95,4 @@ Renaming the local master branch to main
|
|||
|
||||
```shell
|
||||
git branch -m master main
|
||||
```
|
||||
```
|
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue