Other Git Operations

Get familiar with other essential git commands used for version control.

The git merge command

The git merge command is used to take the contents of a feature branch and infuse them into the branch that is currently checked out. For instance, if we are currently working on the master branch, all changes in the feature branch will be merged into the master branch and a new commit will be created, and the feature branch history will remain the same.

A feature branch can be merged into a master branch by typing the following command in the terminal:

git merge <feature-branch> <master-branch>

The git rebase command

The git rebase command moves the base of a feature branch to the master branch’s ending point.

A feature branch can be rebased into a master branch by switching to the master branch and using the git rebase command as ...