I've forked a repository on Github that I would like to contribute to. I've already developed several features as feature branches. On my local machine, I can view the list of feature branches I've written by doing git branch
. What is the equivalent way to view a list of feature branches in my fork on Github? If I just view the list of branches, every branch from both the upstream and the origin is in the list.
Another scenario: I am examining somebody's fork of a porject, and I want to know what features they have added or what they have done differently from the original (upstream
) repository. How do I do this?