defaultselected icon
light-blueselected icon
purple-spaceselected icon
matrixselected icon
vs codeselected icon
mid-nightselected icon

git init

Copied Successfully!

REBASING

Move the current branch’s commits to the tip of <new-base>, which can be either a branch name or a commit ID.

git rebase <new-base> copy

Perform an interactive rebase and select actions for each commit.

git rebase -i <new-base> copy

Add staged changes to the most recent commit instead of creating a new one

git commit --amend copy

Continue a rebase after amending a commit.

git rebase --continue copy

Abandon the current interactive rebase and return the repository to its former state.

git rebase --abort copy

Force a merge commit even if Git could do a fast-forward merge.

git merge --no-ff <branch-name> copy

Rebasing

Search