In Git, I'd like to be able to see, at a glance, whether my repository and working directory are out of date. I often make the mistake of just running "git status" - but that doesn't do any remote communication at all. Or, I'll do this:
git fetch --all
git status
But that doesn't show activity on other branches.
What's a good, convenient way to get information like:
- Are there updates to this branch in any remote repository?
- Are there updates to any parent branch?
- Have any new branches been made - who by, etc.