tags:

views:

177

answers:

1

I've run the suggested commands found here but I still can't seem to get the network view working. Here's what the page/view says instead:

If this is a Github repository you can set your credentials to view your network
git config github.user REPO_USER
git config github.repo REPO_NAME

+1  A: 
git config github.user [email protected]  
git config github.repo the_actual_repo_name_at_github

Seemed to work for me this time.

Also, editing the .git/config file gives more insight into what things are set to. It's easy to see when things are set incorrectly.

thrashr888
The global settings end up in ~/.gitconfig
thrashr888