Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
linux/legit Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# legit
> Complementary command-line interface for Git.
> More information: <https://frostming.github.io/legit>.
- Switch to a specified branch, stashing and restoring unstaged changes:
`git switch {{target_branch}}`
- Synchronize current branch, automatically merging or rebasing, and stashing and unstashing:
`git sync`
- Publish a specified branch to the remote server:
`git publish {{branch_name}}`
- Remove a branch from the remote server:
`git unpublish {{branch_name}}`
- List all branches and their publication status:
`git branches {{glob_pattern}}`
- Remove the last commit from the history:
`git undo {{--hard}}`