I have a scenario in which there a several remote tracking branches within my local repository that I must sync up to. Our workflow model is:
there are multiple ways to check that. i have endup with Free way to get this result.
use gitkraken(paid for private repository!), it provide you wonderfull way to see Tree of your branchs and commits. by scolling down you will reach root of your parent branch.
if you use bitbucket, then they provide view in web to see all your commits for all branchs(By selecting all branch from dropdown).
Free way, via git commnad.
git log --graph --decorate --oneline --all
Commnad Expaination
git log view log.
--graph view log as graph.
--decorate view log in colorfull mode.
--oneline view log, row only one line not full detail in commits.
--all view log, all branchs. (important to solve this thread)