Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-08 00:14:59 +00:00
parent a812b3c467
commit f8bee5305f
111 changed files with 540 additions and 310 deletions

View File

@@ -13,21 +13,21 @@ source: https://github.com/tldr-pages/tldr.git
`git status`
- Give output in [s]hort format:
- Give output in short format:
`git status --short`
`git status {{[-s|--short]}}`
- Show [v]erbose information on changes in both the staging area and working directory:
- Show verbose information on changes in both the staging area and working directory:
`git status --verbose --verbose`
`git status {{[-vv|--verbose --verbose]}}`
- Show the [b]ranch and tracking info:
- Show the branch and tracking info:
`git status --branch`
`git status {{[-b|--branch]}}`
- Show output in [s]hort format along with [b]ranch info:
- Show output in short format along with branch info:
`git status --short --branch`
`git status {{[-sb|--short --branch]}}`
- Show the number of entries currently stashed away:
@@ -35,4 +35,4 @@ source: https://github.com/tldr-pages/tldr.git
- Don't show untracked files in the output:
`git status --untracked-files=no`
`git status {{[-uno|--untracked-files=no]}}`