In my local repository, I add a new remote and fetch its history:
$ git remote add foo_remote git@github.com:joe/foo.git
$ git fetch foo_remote
Now, how to view the log of all branches of only this remote? I am interested in viewing the commits (using git log) and DAG of this remote only (using gitk).
I know that I can view the log and DAG of a particular branch on this remote:
$ git log foo_remote/branch1
$ gitk foo_remote/branch1
I want something that does this:
$ git log foo_remote/*
$ gitk foo_remote/*