Android Poster
Android Poster

Reputation: 11

Where are the source files? After git clone

Where on earth are the files?

I cannot find the darn files after doing a git clone.

I just cloned git clone https://code.google.com/p/libgdx/

I found the hidden .git folder etc. Tried every sensible command but I not seeing any java files ...

Yes, I know git is different but I still want real java files on my machine.

Oh and for those writing Git 101, Git Cheetsheet, Git Vs. SVN, yes getting the files from a remote repo is the first thing we need to know. Not a lot of slick commands.

Upvotes: 0

Views: 4028

Answers (2)

Sumanth
Sumanth

Reputation: 29

For cloning libgdx source - git clone https://github.com/libgdx/libgdx.git

Upvotes: -1

SLaks
SLaks

Reputation: 887449

If you run git clone https://code.google.com/p/libgdx/ and look at the libgdx folder, you will see the only file currently in that git repository, which is README.

Git will not magically create Java code in an empty project.

If you look at the readme (or the project site), you'll see that it has moved to GitHub.

Upvotes: 2

Related Questions