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)

Web analytics


Due to GitHub's nature, a repository contains many metadata such as commits over time, who contributed what, number of contributors, number of forks, and even site referrals to various files.

GitHub provides some useful graphs and data from which you can deduct the information you require.

Graphs

Graphs can be accessed through the right sidebar of a repository:

To better understand how this works, pick up a project with high traffic; for example, https://github.com/twbs/bootstrap/graphs. The default tab is the Contributors tab and also the one we will explore next.

Contributors – additions/deletions

An overview of the top 100 contributors of a project can be seen at the Contributors tab. The graph is created by the data of the default branch of a repository and it depicts the commits from the beginning of the project until the current day:

At the bottom there are the statistics of the total number of commits, along with the line additions and deletions of each of the top 100 contributors...