Is there a way to get git status to show 2 remotes?
Basically I have origin set to the Fork of a github project and upstream to the Fork's parent project. On the github page for my Fork it lists something like this
This branch is 1 commit ahead, 9 commits behind othergithubuser:master
Essentially, I'm looking for git status(or some way) to replicate this
.git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://github.com/mygithubuser/project.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "upstream"]
url = https://github.com/othergithubuser/project.git
fetch = +refs/heads/*:refs/remotes/upstream/*