Skip to main content

Command Palette

Search for a command to run...

Lecture # 12 - Git Rebase

Rebase in Git.

Updated
1 min read
Lecture # 12 - Git Rebase

Rebase:

Git rebase is a command used to reapply commits on top of another base branch. It's essentially a way to move or integrate a series of commits from one branch to another, typically used to maintain a cleaner and more linear project history. Rebase command is written as git rebase [branch-name] [head-branch] .