Reputation: 585
How to properly import projects from BitBucket or another cloud repository? I have Eclipse Neon JavaEE. Even if there is Git preinstalled yet and (for my purposes important) Maven too. The imported projects are not real projects.
The straighforward way is:
Now I can see this picture (Ubuntu Linux 16.04)
But no any from this options clone huge of projects properly. To successful clone projects I must in this moment
Do you know anybody how do this operation better? Next another thing is, that I cannot select more projects, because the option Import Projects... will disappear.
Upvotes: 1
Views: 117
Reputation: 1324937
Another approach is to:
clone those repositories manually in command-line (with a Git you install yourself, separately from the one used by Eclipse).
Clone those repo in any path you want, outside of the Eclipse workspace folder.
import the project you want into the Eclipse workspace, by using the local path where the Git repo has just been cloned.
once imported, select the Team/share option by right-clicking on the imported project in Eclipse: it should recognized the project is already shared as a Git repo.
That wy, you don't try to do everything with Eclipse in one Go: you separate and keep better control on each step (clone, import, share)
Upvotes: 1