-2

I want to clone this project:

https://github.com/Guemache/StatisticsSquad/tree/master/ProjetWeb

I tried to do this with eclipse, but without success.

How to clone the repository?

Florian Neumann
  • 5,587
  • 1
  • 39
  • 48
  • what do you mean by open? are you asking how to use `git clone`? – nikis May 17 '14 at 08:54
  • @nikis i'm beginner so i don't know how to use git clone. I want just to run and test this project on eclipse – user3493042 May 17 '14 at 08:56
  • 2
    Usually you would use Git to clone the project on your local computer. Then you open that local project in Eclipse. If you don't want to use git, Github let's you download manually here: https://github.com/Guemache/StatisticsSquad/archive/master.zip – Steve Blackwell May 17 '14 at 09:05
  • possible duplicate of [Eclipse + EGit: clone project into workspace](http://stackoverflow.com/questions/6396349/eclipse-egit-clone-project-into-workspace) – oberlies May 19 '14 at 15:09

1 Answers1

1

Download the repository to your computer with Git (if you do not have install it)

git clone https://github.com/Guemache/StatisticsSquad.git

In your Eclipse, install the Scala IDE plugin. This project is a "Play Framework"-project so read this article to configure your IDE and "eclipsify" your project in order to be able to open it with Eclipse.

Florian Neumann
  • 5,587
  • 1
  • 39
  • 48
gasparms
  • 3,336
  • 22
  • 26