Website: https://github.com/
Category: Android2014-04-05 01:33 32432 people read Comments (8) favorite reports Eclipsegitgithub
As a popular version control system, Git is widely used by various internet companies. At present, the foreign website has GitHub, the domestic has csdn and Oschina git.
Git makes it easy to work with multiple people and version control. As a primer for small white, I first from my point of view and everyone to see how to use GitHub, I focus on the operation, do not pay attention to the principle.
If you want to learn more about git, it's recommended to look at a document like Git getting Started
This article tells me how to use other people's Code, and at first, GitHub was a good place to download the Open Source Library. When I do Android requires a Actionbar, chart, menu, Git always can find. There is no shortage of the world's best handlers working. To make our development faster, we need to use the projects they do well
1. Open GitHub, at the top there will be a search box where we can enter the libraries we may use, such as chart
2. All the open chart items in github will be searched:
3, because I do the android, here I choose Java
We see here a selection that gives us satisfaction, and there are more than 472 items, choose the first one:
4, Android-charts
After opening android-charts we saw a project interface: The main interface is the project name and code tree, the right side is the project's properties (topic, number of submissions, number of people, etc.), below is the author's description of the project:
In the area of the code structure, you can view the current file contents directly by clicking on the file.
Project Introduction area, the author will introduce the function of the project and how to use it.
If you want to download the compressed package of this item directly, click Download ZIP in the lower right corner;
If you want to import the project directly into eclipse (because I do Android), open Eclipse, choose File-->import-->projects from Git-to URI, enter HTTPS URL--next
Select a branch: such as Master-> Next--Select Save directory, eclipse will automatically download the content for us
Finally, we put the project into the right place! ~
The advantage is that there will be Git's address, and if the author updates the program one day, we can easily update our local git repository.
Reprint please specify from: http://blog.csdn.net/icyfox_bupt/article/details/22966629
One of the basics of GitHub: Download projects using GitHub