Update cheatsheets

This commit is contained in:
ivuorinen
2024-09-04 00:16:06 +00:00
parent 6d3dd67e22
commit e2776841ad
21 changed files with 47 additions and 47 deletions

View File

@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Add all files (tracked and untracked):
`git add {{--all|-A}}`
`git add {{-A|--all}}`
- Add all files in the current folder:
@@ -22,20 +22,20 @@ source: https://github.com/tldr-pages/tldr.git
- Only add already tracked files:
`git add {{--update|-u}}`
`git add {{-u|--update}}`
- Also add ignored files:
`git add {{--force|-f}}`
`git add {{-f|--force}}`
- Interactively stage parts of files:
`git add {{--patch|-p}}`
`git add {{-p|--patch}}`
- Interactively stage parts of a given file:
`git add {{--patch|-p}} {{path/to/file}}`
`git add {{-p|--patch}} {{path/to/file}}`
- Interactively stage a file:
`git add {{--interactive|-i}}`
`git add {{-i|--interactive}}`