snippetbashTip
legit — Complementary command-line interface for Git. More information: <https://frostming.github.io/legit/>
Viewed 0 times
commandcomplementaryinterfaceclilegitforline
linux
Problem
How to use the
legit command: Complementary command-line interface for Git. More information: <https://frostming.github.io/legit/>.Solution
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 syncPublish 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 --hardCode Snippets
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 syncPublish 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}}Context
tldr-pages: linux/legit
Revisions (0)
No revisions yet.