Branching
Branch
The git branch command allows you to create, list, rename and delete branches.
Create Branch
List Branch
Delete Branch
Rename Branch
Delete Remote Branch
Checkout
You can switch between two branches with the git checkout command.
Create and switch Branch
Discord changes
Merge
You can merge two branches with the help of git merge command.
Merge into other branch
Cherry-pick
Cherry-picking in Git stands for applying some commit from one branch into another branch.
Rebase
Rebasing is a process to re apply commits on top of another base commit.
Continue to apply changes
Skip changes and apply
Stash
Switch branches without committing the current branch.
Save Stash
List Stash
Apply Stash
Show Changes
Last updated