Last updated
Hello all,
Currently have one Git Repository that contains a vast amount of source code. Have a need to refactor our source code however do not want to restructure the Git Repo. Is there a way to get Eclipse set up so that multiple projects all contain only that projects source code and all projects reside in the current Git Repo.
For example lets say the source code is laid out in package structure. Right now the Git repo looks like this package structure:
a
b
c -> c.a -> c.b
d -> d.a -> d,b -> d.c
e
Basically above a, b, c, d, and e are all folders. C.a and c.b are subfolders inside of c. Same deal with d.
I want 5 Eclipse projects....one for each folder a, b, c, d, e. The subfolders stay with their parent folder.
Since this is Java code the package structure should remain the same. I don't want a Git Repo with multiple Eclipse projects checked in....I only want the source code in.
Am I making any sense here?