3

I am trying to get a source code for an application from github.

But i can not exactly figure out how to accomplish and set this up...

Has anyone used github before.

i am using the latest version on OS X

3 Answers 3

7

This does not seem to be android related; however, the simplest way to get source of a github project without knowing how to use git is to visit their page on github, and use the "downloads" button near the top right of the page.

Example of a page: https://github.com/joyent/node - notice the downloads button on the right next to the description.

If you have git installed you can clone the url provided on that page. Ex: git clone https://github.com/joyent/node.git

Sign up to request clarification or add additional context in comments.

1 Comment

It has to do with an Android Source Code
4

If you just want the latest version, click the “Downloads” link on the repository page to receive a zip file. If you want to browse the history locally or make commits, install git and clone it:

  1. Read How to install git? The Mac link on Git’s home page appears to link to an easy installer.
  2. On the main page for a repository on github, there is a URL of the form https://github.com/username/repository.git. In the terminal, use the command git clone https://github.com/… to clone it.

Comments

0

Not sure about Macs but on Linux its, git clone (git addy). which will create a clone of the project. If you're using eclipse, check out egit. Also read the docs on github to understand what git is and how to use it.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.