0 votes
in Git by
How will you know in Git if a branch has already been merged into master?

1 Answer

0 votes
by

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
0 votes
asked Oct 16, 2019 in Git by rajeshsharma
...