InterviewSolution
Saved Bookmarks
| 1. |
GIT Rebase |
|
Answer» Git Rebase is a process of combining a sequence of commits to a new base commit.
The following rebase command is used for rebasing the commits: git rebase <branch_name> |
|