Reputation: 23360
I want to clone the files from here:
https://github.com/playframework/Play20/tree/master/samples/java/forms
and it's the first time I use github.
I couldn't understand what .git file should I try and clone?
Many thanks.
Upvotes: 0
Views: 74
Reputation: 83527
You need to use the repository's URL when you clone a github project. You can find this by clicking on the Code tab at the top of the project's web page. For the project you linked, the URL is https://github.com/playframework/Play20.git
. If you are using the command line, you can type
git clone https://github.com/playframework/Play20.git
to clone the project.
Upvotes: 3