After copying my GIT
repo from a PC computer onto my MAC, i can\'t seem to import it to an eclipse. Import happens via eGit plugin directly from existing local
Try to use different directories for workspace and git project. Workspace -> wsp, Git-Project -> wsp/git-project instead of: Workspace/Git-Project -> git-project
"Contains: /Users/me/Repositories/ABC overlaps the location of another project: 'ABC'"
Looks like you already have a project in your workspace with the same name like the project you would like to import.
I just had this error; in order to solve it I removed the project from my workspace directory. I threw it on my desktop. Then when importing the project, check the box that says copy into workspace.
Eclipse checks in your workspace to see if the directory exists already, if it does, it gives the error.
You should not copy git repos, you should clone them. However, looking at your error message, it doesn't especially seem like a git problem at all.
I've meet the same issue and after some time found following solution to remain git repo:
Just one more note, your project shall contain .git folder
It's working fine for me
mvn eclipse:clean eclipse:eclipse
I run above command from terminal and build issues in eclipse were resolved.