how to get the new list of branches in git code example
Example 1: show all remote branches git
git branch -r
Example 2: show all remote branches git
git ls-remote --heads <remote-name>
git branch -r
git ls-remote --heads <remote-name>