Is there a way to have it compare all remotes, because it would be awesome if i can see my upstream remote too.
git-branches -all
| Branch | Base | Behind | Ahead |
|------------|--------|-------:|:------|
| **master** | master | 0 | 0 |
| Branch | Remote | Behind | Ahead |
|------------|---------------|-------:|:------|
| **master** | origin/master | 0 | 1 |
The .git/config it is operating on:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = git@github.com-joe-getcouragenow:joe-getcouragenow/sys.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "upstream"]
url = git@github.com-joe-getcouragenow:getcouragenow/sys.git
fetch = +refs/heads/*:refs/remotes/upstream/*
Is there a way to have it compare all remotes, because it would be awesome if i can see my upstream remote too.
The .git/config it is operating on: