in Git by (23.9k points)
How will you know in Git if a branch has already been merged into master?

1 Answer

0 votes
by (14.0k points)

The answer is pretty direct.

To know if a branch has been merged into master or not you can use the below commands:

git branch --merged – It lists the branches that have been merged into the current branch.

git branch --no-merged – It lists the branches that have not been merged.

Related questions

0 votes
asked May 21, 2020 in Git by SakshiSharma (32.2k points)
...