1.

What command helps us know the list of branches merged to master?

Answer»
  • git branch --merged HELPS to GET the LIST of the BRANCHES that have been merged into the CURRENT branch.
  • Note: git branch --no-merged lists the branches that have not been merged to the current branch.


Discussion

No Comment Found