How to use open source project on github

To open source once submitted, for example, teach you step into the open source world.

1, log into https://github.com register an account on its own platform, this process is not demonstrated

2, then enter the name of the upper left part of an open source project, chose jvalidator, Enter the search.

Taught you how to join github open source world!

3, find the items shown below as shown in the search results page, click the project name.

Taught you how to join github open source world!

4. At this point, you have entered into rinh / jvalidator project home page, fork button in the top right corner, put the project pulled under your account, you can join to this project the

Taught you how to join github open source world!

5, this time, the page has to jump to jvalidator projects under your account, and click the Copy button in the lower right, this address is copied down later be useful

Taught you how to join github open source world!

6. At this point, you need to install a Git client tools, and that happens a lot, we will use it to demonstrate the http://msysgit.github.io , this page to download the tool, select a new version of it , download it to your computer, and then install it.

Taught you how to join github open source world!

7, then you a suitable location in your disk in the establishment of a catalog, designed to store the open source, for example, I created a D drive in my git folder, enter the folder git

Taught you how to join github open source world!

8, click your right mouse button, there will be a Git Bash command options, click to enter. At this point you can see is a named window

Taught you how to join github open source world!

9, input command git clone at first and then copy the address to the back, Enter to start the download jvalidator your source code on github to your computer the

Taught you how to join github open source world!

10. At this point, you can go inside the code development, and add new features, modifications obvious bug ...... here is your involvement in the development of open source

11 through 10, after saved the file, back to our git bash command interface, enter the command

cd jvalidator // into this folder

git add. // changes will place added to the Version Manager

git commit -m "some changes" // submitted to the local version control repository, which is quoted on the information you submitted this description

git push -u origin master // to your local repository to submit your github account, this time you need to enter your github account and password, you enter it wants

Taught you how to join github open source world!

12, at this time you are in your present job is complete, go to your github above, this jvalidator to select the project name, click into the right side there is a pull request, click

Taught you how to join github open source world!

13. Go to the jump page, click New pull Request button on the right

Taught you how to join github open source world!

14. At this point, you can see your changes in the party, and the next check, after no problem, just click the View pull request button

Taught you how to join github open source world!

 

15. At this point, you can enter a description for your information submitted in this page, input finished, click the submit button comment

Taught you how to join github open source world!

16, this, your task is complete, until the open source project management personnel audit, passed, he took your changes merged into the corresponding development branch.

Published 110 original articles · won praise 76 · views 110 000 +

Guess you like

Origin blog.csdn.net/qq_34731703/article/details/77667721