existGitIn the meantime,Branch mergeEntermaster
(or any other branch) is a common operation for integrating new features, fixes, or updates developed from branches into the mainline. Here is a merge of a branch intomaster
Steps:
1. Ensuremaster
The branch is the latest
Before you merge, you need to make suremaster
The branch contains all the most recent updates. This can be switched tomaster
Branching and pulling the latest changes to complete:
git checkout master
git pull origin master
- 1
- 2
These commands switch tomaster
branch and from remoteorigin
Warehousemaster
Branch pulls the latest changes.
2. Merge the branches tomaster
oncemaster
The branches are latest, and you can merge the target branches intomaster
Now. First, make sure you are still theremaster
On the branch, then usegit merge
Command merge branches:
git merge <branch-name>
- 1
Will<branch-name>
Replace with you want to mergemaster
branch name. This command will merge the changes to the specified branch into the current branch (in this casemaster
)。
3. Resolve merge conflicts (if any)
If there is a conflict during the merge process, Git will stop the merge and ask you to resolve the conflicts manually. Git will mark conflicting files. You need to open these files and look for the parts marked as conflicts (usually<<<<<<<
,=======
,>>>>>>>
surround), and decide how to merge these changes.
After all conflicts are resolved, you need to add these changes to the staging area and continue the merge process:
git add . # Self-testing does not actually require this command?
git commit # Self-testing does not actually require this command?
- 1
- 2
This opens a text editor that lets you enter the merged commit message. Saving and closing the editor will complete the merge commit.
4. Push changes to remote repository
After the merge is complete, you may want to add the updated onemaster
Push branches to remote repository:
git push origin master
- 1
This will bring the localmaster
Branch changes are pushed to remoteorigin
storehouse.
Notice
- Before merging, make sure your working directory is clean (i.e. no uncommitted changes) which can be done by
git status
Command to check. - Before merging large or important branches, consider using
git merge --no-ff <branch-name>
. This command will create a new commit object, which can retain the branch's historical information even if it is a fast-forward merge. - If you want a cleaner history, consider using
git merge --squash <branch-name>
, this compresses all changes to the branch into a separate commit. - In a teamwork environment, it is also important to communicate with team members before merging to ensure that it does not interfere with other people's work.