Reputation: 1846
I have an existed eclipse with project from Git in Computer A which is working.
I want to have another station in computer B.
I know that I should do Import -> Import from GIT as instructed here: https://www.lennu.net/import-git-project-into-eclipse/
But this is a project that no one has touched in a long time and I have no idea how to enter the data.
Is there a way to figure out the steps from computer A?
Upvotes: 0
Views: 84
Reputation: 5274
If you have access to the Eclipse workspace on computer A, figuring out the git url can be done as follows. I can't see that machine, so this answer assumes its a standard Eclipse installation.
The git repositories listing should have an entry which is the git repository the project has been checked out from
And then its fingers crossed that you have access to that git repository so you can clone it out from computer B.
Upvotes: 1
Reputation: 7821
You have 3 options:
.git
. Then when you open your project with Eclipse in computer B, it'll know that it's a GIT project!Do you know your GIT repository URL? If yes, in your computer B, tape
$> git clone <url/to/your/git/repository>
Then when you open your project with Eclipse in computer B, it'll know that it's a GIT project!
Upvotes: 1