| [Date: 2014-09-06] |
Source: Linux Community Freeloda |
[Font: Big medium small] |
Outline:
First, preface
Second, GitHub introduction
Third, registered GitHub account
Iv. Configuring GitHub
V. Use of GitHub
VI. participate in other open source projects on GitHub
Vii. Summary
Note, GitHub official website: https://github.com/, client: Git version 1.9.2.msysgit.0. All software please download here: http://msysgit.github.io/.
First, preface
In the previous article we explained the construction of Git server, Git local repository, git remote warehouse, git branch management, git tag management, in the GIT server Setup we said one is to find a server to build a git server, the building method is very simple, the previous article has introduced, Not clear Bo friends can see, there is a need not to build a git server, you can get git remote repository. That's what we're going to explain in this blog post, so let's get to know GitHub first.
GitHub Tutorial Series articles :
GitHub using tutorial graphics http://www.linuxidc.com/Linux/2014-09/106230.htm
Git Tag Management detailed http://www.linuxidc.com/Linux/2014-09/106231.htm
Git Branch Management detailed http://www.linuxidc.com/Linux/2014-09/106232.htm
Git Remote Repository detailed http://www.linuxidc.com/Linux/2014-09/106233.htm
Git Local Repository (Repository) detailed http://www.linuxidc.com/Linux/2014-09/106234.htm
Git Server build and Client installation http://www.linuxidc.com/Linux/2014-05/101830.htm
Git Overview http://www.linuxidc.com/Linux/2014-05/101829.htm
Second, GitHub introduction
GitHub can host a variety of git repositories and provide a web interface, but unlike other services like SourceForge or Google code, GitHub's unique selling point is the simplicity of branching from another project. Contributing code to a project is simple: first click on the "Fork" button of the project site, then check out the code and add the changes to the code base you just separated, and finally request a code merge from the project owner through the built-in pull request mechanism. GitHub has already been called the code player's MySpace. GitHub is primarily implemented with rails. In the following sections we will explain the details of GitHub usage.
Third, registered GitHub account
1. Let's start by registering a GitHub account, such as:
2. Let's take a quick look at the registration process
3. Simply enter the user name, email address, password Click Create to enter the next step, such as:
4. The above information simply fill in, click to enter the next step, such as:
5. Fill in some simple organization information, click Next, such as:
Click "Finish" and here our GitHub account is registered.
Transferred from: http://www.linuxidc.com/Linux/2014-09/106230.htm
GitHub Use tutorial graphics (GO)