Search code examples
gittig

Show commits for branch on remote


With git log --graph I get to see commits pushed to remote origin after I did a git pull last:

git log

in tig I don't see these commits:

tig

Is there some flag or config I'm missing to get to see this in tig?


Solution

  • Try --all with tig.

    Running it without --all displays only local branches. To see the remote branches as well you have to use the --all option.