Update cheatsheets

This commit is contained in:
ivuorinen
2024-09-01 00:19:16 +00:00
parent a05eb0e931
commit bb9d5922fa
24 changed files with 60 additions and 48 deletions

View File

@@ -10,24 +10,24 @@ source: https://github.com/tldr-pages/tldr.git
- Create a tar archive from the contents of the current HEAD and print it to `stdout`:
`git archive --verbose HEAD`
`git archive {{--verbose|-v}} HEAD`
- Use the Zip format and report progress verbosely:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{--verbose|-v}} --format zip HEAD`
- Output the Zip archive to a specific file:
`git archive -v {{-o|--output}} {{path/to/file.zip}} HEAD`
`git archive {{--verbose|-v}} {{--output|-o}} {{path/to/file.zip}} HEAD`
- Create a tar archive from the contents of the latest commit of a specific branch:
`git archive -o {{path/to/file.tar}} {{branch_name}}`
`git archive {{--output|-o}} {{path/to/file.tar}} {{branch_name}}`
- Use the contents of a specific directory:
`git archive -o {{path/to/file.tar}} HEAD:{{path/to/directory}}`
`git archive {{--output|-o}} {{path/to/file.tar}} HEAD:{{path/to/directory}}`
- Prepend a path to each file to archive it inside a specific directory:
`git archive -o {{path/to/file.tar}} --prefix {{path/to/prepend}}/ HEAD`
`git archive {{--output|-o}} {{path/to/file.tar}} --prefix {{path/to/prepend}}/ HEAD`