How can one know the branches that are already merged into the master branch?
Answer Posted / Priyank Kaushik
To find out which branches have been merged into the master branch, you can use Git command line tools. Using commands like `git log --merges` or `git merge-base --all origin/master` will help you identify all the branches that have been successfully merged into the master.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers