Book Image

GitHub Essentials

By : Achilleas Pipinellis
Book Image

GitHub Essentials

By: Achilleas Pipinellis

Overview of this book

<p><span id="description" class="sugar_field">Whether you are an experienced developer or a novice, learning to work with Version Control Systems is a must in the software development world. Git is the most popular tool for that purpose and GitHub was built around it leveraging its powers by bringing it to the web.</span></p> <p><span id="description" class="sugar_field">Starting with the basics of creating a repository you will then learn how to manage the issue tracker, the place where discussion about your project takes place. Continuing our journey we will explore how to use the wiki and write rich documentation that will accompany your project. Organization and team management will be the next stop and then onto the feature that made GitHub so well known, Pull Requests. Next we focus on creating simple web pages hosted on GitHub and lastly we explore the settings that are configurable for a user and a repository.</span></p>
Table of Contents (13 chapters)

Global member privileges


Prior to inviting people and creating any repositories, let's examine two important settings and set some defaults. Head over to the settings page and select the Member privileges tab:

As you can see, there are two settings. The first is about repository creation, and if enabled, any member of the organization will be able to create repositories under the organization namespace.

Enable this if you want to work more openly and disable it to be more strict. By disabling it, only owners will be able to create repositories. Outside collaborators (see the Difference between Members and Outside collaborators section) will not be able to create any repositories regardless of this option.

The other option is regarding the default repository permissions that organization members have on all repositories, new or old. You can choose from four options: None, Read, Write, and Admin. The None option is the least privileged one and it means that members can clone and pull public repositories...