mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 14:26:04 +02:00
legit: add page (#4425)
This commit is contained in:
parent
86a01e4aca
commit
be42a2feea
1 changed files with 28 additions and 0 deletions
28
pages/linux/legit.md
Normal file
28
pages/linux/legit.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue