The current GitHub is very fire, both domestic and foreign now in use. Take the time to study the use of this thing, and summed up, although a little late, but I think there is a need to understand and learn the place. All right, go to the topic, step-by-step to introduce, of course, the easiest way to learn, of course, follow the steps provided by the GitHub website to learn. I am also here to summarize this content.
1. GitHub website: https://github.com
2, choose Login, enter the user name, password, login. After landing, you will be introduced to the homepage, which contains four basic applications:
- Set up Git
- Create A Repository
- Fork a Repository
- Be Social
3, Set up a git (the main purpose is to install the Git tool on the local system, because GitHub is actually a website that serves git) 1, configure the user name and mailbox.
git config--global user.name "Your name Here" # sets the default name for git to use when you commit
git config--global user.email "[email protected]" # Sets the default e-mail for Git-to-use when you commit
2. Supplementary instructions
Post-use experience