đź’»
How to Use Project Development Tools in a Remote C
  • How to Use Project Development Tools in a Remote Coding Team
  • Trello
    • Introduction to Trello
    • How to use Trello
      • What is Trello?
      • Starting up a Trello Board
      • Lists
      • Cards
  • Visual Studio Code
    • Introduction to Live Share in Visual Studio Code
    • How to use Live Share
      • How to Install
      • How to Use
      • Examples of Use Cases
  • Git & Github - Basics
    • Introduction to Git & GitHub
    • How To Use Git
      • Setting up Git
      • Creating GitHub Repositories
      • Managing Repository Access
      • Syncing with a Local Workspace
  • How to Manage a Codebase with Git
    • Introduction to Branching
    • How To Use Branches
      • What are Branches?
      • Working in Branches
      • Merging Branches
      • Best Practices For Branching
    • Git Codebase Management Cheat Sheet
  • Conclusion
  • Team Biography
  • References
Powered by GitBook
On this page
  • Repository Visibility
  • Collaborators

Was this helpful?

Export as PDF
  1. Git & Github - Basics
  2. How To Use Git

Managing Repository Access

PreviousCreating GitHub RepositoriesNextSyncing with a Local Workspace

Last updated 4 years ago

Was this helpful?

Repository Visibility

As mentioned in the section, you can determine which users can see your repositories. If you set repository visibility to “Public” then anyone on the internet can read and download your repository. If you set repository visibility to “Private”, then only users or organizations you explicitly invite can read and download your repository. To change visibility of your repository:

  1. Click “settings” on your repository’s GitHub page

  2. Click "Options" from the sidebar

  3. Scroll down to "Danger Zone" section

  4. Click "Change Visibility"

Collaborators

You can explicitly invite users to commit changes to your repository through adding collaborators:

  1. On the repository page navigate to “settings”

  2. Click “Manage access”

  3. Click “invite collaborators” and type in the user name of the users you want to add.

Changing the visibility of your repository can affect your repository’s forks and must be done with caution (see article for more details).

this
Creating GitHub Repositories