Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-22 00:22:43 +00:00
parent 9017f8acda
commit 716a67f83d
236 changed files with 290 additions and 289 deletions

View File

@@ -13,7 +13,7 @@ source: https://github.com/tldr-pages/tldr.git
`git rebase {{new_base_branch}}`
- Start an interactive rebase, which allows the commits to be reordered, omitted, combined or modified:
- Start an interactive rebase, which allows the commits to be reordered, omitted, combined, or modified:
`git rebase {{[-i|--interactive]}} {{target_base_branch_or_commit_hash}}`
@@ -33,7 +33,7 @@ source: https://github.com/tldr-pages/tldr.git
`git rebase --onto {{new_base}} {{old_base}}`
- Reapply the last 5 commits in-place, stopping to allow them to be reordered, omitted, combined or modified:
- Reapply the last 5 commits in-place, stopping to allow them to be reordered, omitted, combined, or modified:
`git rebase {{[-i|--interactive]}} {{HEAD~5}}`