How will you know in GIT if a branch has been already merged into master?
Answer Posted / Bhupendra Singh
You can check if a branch has been merged into the master branch by running `git log --merges <branch-name>` or by checking the 'Master' branch's history and looking for the branch you are interested in. If you see a merge commit that includes your branch, it means that your branch has been merged into the master.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers