1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 07:15:23 +02:00
tldr/pages/linux/legit.md
2025-06-27 15:31:18 +03:00

629 B

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 sw {{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