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]
.