Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-09 00:16:26 +00:00
parent f8bee5305f
commit 9e2d0f72f1
116 changed files with 330 additions and 330 deletions

View File

@@ -15,11 +15,11 @@ source: https://github.com/tldr-pages/tldr.git
- Create a new branch and switch to it:
`git switch --create {{branch_name}}`
`git switch {{[-c|--create]}} {{branch_name}}`
- Create a new branch based on an existing commit and switch to it:
`git switch --create {{branch_name}} {{commit}}`
`git switch {{[-c|--create]}} {{branch_name}} {{commit}}`
- Switch to the previous branch:
@@ -31,4 +31,4 @@ source: https://github.com/tldr-pages/tldr.git
- Switch to a branch and automatically merge the current branch and any uncommitted changes into it:
`git switch --merge {{branch_name}}`
`git switch {{[-m|--merge]}} {{branch_name}}`