How do I get a network view to work on GitHub?

I ran the suggested commands found here , but I still can't get the network view to work. Here's what the page / view says:

If it 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


source to share


1 answer


git config github.user thrashr888@example.com  
git config github.repo the_actual_repo_name_at_github

      

It seemed like I was working this time.



In addition, editing the file .git/config

gives you more information about what you are configured for. It's easy to see when things are wrong.

+1


source







All Articles