I've been trying to figure out how to use git without egit in eclipse.
I clone an existing android project on remote repository into my eclipse workspace. If this project directory is the root folder itself, I can't import this project with error, "Invalid project description". If I have one more folder on top of this project in the remote repository, it works when I clone and import into eclipse.
Former looks like this... workspace/myproject
and latter which works is... workspace/topfolder/myproject
Am I importing this git repo the right way?
Then once I have the project set up on eclipse, I will set up .gitignore and I can start to modify, stage, commit, and push etc.
* Update *
To import into eclipse, I do the following. First I go to my eclipse workspace.
cd example/workspace
Then, git clone https://github.com/me/test.git
I open eclipse and go to File > New > Project > Android Project from Existing Code. I select the directory cloned. I leave the "copy into directory" unchecked because I want to use cloned git.
When I do this, I get "Invalid project description" for having a directory of same name which is the cloned folder itself.
If I put this cloned folder in another folder, it works. I just have a feeling that this might not be the correct way or how everyone does.