Reputation: 3876
Newbie question
I have downloaded a project from git repository using Eclipse (Import-> Clone URI). It created a folder in my local MyDocuments git folder and I can also see the project in the Eclipse's Package Explorer.
For some reason, for any source file, say HelloWorld.java
which I see inside the MyDocuments git project folder, I do not see HelloWorld.java
in Eclipse's package explorer. I have changed perspective to java/javaee/java
browsing etc.
Is there some setting/perspective in Eclipse where I can see all the source files?
Upvotes: 1
Views: 763
Reputation: 8849
After successful cloning git repository inside eclipse, you need to import these project inside eclipse.
Click Windows > Show view > Other
then select Git repositories view. Right click on Working directory
then select Import project.
Upvotes: 0