How to isolate Eclipse workspace from git local repository? -
I installed eGet on Juno and created Java project in the works area of Eclipse. Then I shared that project with the guit. Then when I check the properties of the project, I came to know that this project has been shifted from its original workspace to the Git local store. When I make some changes in the Eclipse editor, the change is done without a local repository.
How to separate the Eclipse workspace from the GIT local repository?
(Well, my eclipse workspace is ~ / document / workspace, my GIT is the local store ~ / git / myrepository1.)
The workspace is still in its original location outside of editing, it is such projects that have been moved to git-controlled directories. Normally the projects are created in the Eclipse workspace folder but you can override that default.
If you really want to separate the change from GIT, then you have to break GIT's control of the project, but you can still have the misfortune to move the project contents back into your workspace. From, the process of making a change in the guit is actually messed up.
This is the first time I've found that git is unable to control my eclipse projects, but after some time it seems to understand and actually a very powerful version control function.
Comments
Post a Comment