How can update project from Git in my Eclipse Mars - java

I have config my Git repository on my Windows pc and my Mac Osx.
In this git repository, I have my Java project and I used Eclipse with IDE.
Now to commit change from eclipse, I can do, right click on project, team, commit. After that, I open Git view, then I do, right click on Git, then select PUSH. This works.
Now the problem is to update the other Eclipse on Mac for example. So this is what I can see from eclipse:
Now, to view the update I do right click on origin/EasyAssistenza under "Remote Tracking" then I click Synchronize with workspace. Nut this operation sometimes works and sometimes not works.
What is the correct operation to do update my repository?

GO to the MAin Git project origin/EasyAssistenza and do a Pull... which will pull in all the changes you have committed and then you can do rebase on branches...

Related

in Eclipse, Commit option is not visible

In Eclipse, am not able to see the option called Commit in Team. Please help is there any settings to get that option. Please do let me know.
You need to have the project Open. Open first, then right click for Team and Commit.
Then when you right click on the Repository in Git Repository view or the Project in Package Explorer view, you will see the option in Team.
If you have not connected to the remote repository or have no repositories locally, then I think you also have the same problem. Connect to or select a repository.
Your project is open, so you may be offline at the point you took the image or perhaps the repository is not connected.
In the Window menu tab, select Show View and then select Other and then Git.
I think you need to install git integration plugin from marketplace and then set up your git account

How to install a Plug-in project to my Eclipse? (Version: Luna Service Release 2 (4.4.2))

I have generated a demo popup menu plugin project automatically by Eclipse. Here is the project structure,
I have set a objectContribution to the point org.eclipse.ui.popupMenus,
When I right click the project and choose Run as -> Eclipse Application, another Eclipse process run and I can see the configured menu works well,
How can I install this plugin for my original Eclipse process?
What I have tried
I did some research and tried to Export -> Deployable plug-ins and fragments, then put it into the %EclipseFolder%/plugins, but it didn't work. I also have tried to Export -> Deployable features and installed it by Help->Install New Software, also failed to see the menu when right click the project.
Will you please help? BTW, I would like to know how to contribute a menu which will display when I right click on a package in a project? Thanks so much.
Use the Deployable plug-ins and fragments wizard and select Intall into Host on the Destination page.
This will create a p2 repository at the denoted location and install the selected plug-ins from there into the host instance, i.e. the Eclipse IDE that you are currently working with. I think a restart may be required.

How to fix corrupted Eclipse Indigo JEE?

I installed following plugins in eclipse indigo in following order to start spring development
Spring Tools Suite
M2E (Maven)
after these two installations, it was giving error
jira connector not installed, so I installed the following plugin.
Atlassian Jira Connector
After installing Jira Connector, Eclipse Started showing the following error :
Uninstalled Jira Connector. Still Showing these Problems.
Any help would be appreciated.
Eclipse has major structural problems with uninstalls, which aren't really fixed even the latest luna. But don't worry, there are a lot of workarounds.
What you can do now and in similar situations:
1.
If you can even uninstall something, you won't get back its previous state before the install.
Because of it I use Eclipse normally with a trick: I store my main Eclipse install directory in a git repository, and so I can always switch back with a single command. But it is only a trick.
2.
There is a big chance, that only your workspace directory is damaged, and not your Eclipse. In this case you can solve this problem by reinitializing your workspace: make a backup, delete everything, recreate your workspace directory and finally import again your projects.
(For similar reasons it is also an useful trick to save your workspace metadata in a git repository as well.)
3.
In Eclipse, the menu items are created by modules. If an eclipse module is installed, it creates the changes in its internal configurations which create the menu items.
After a restart, Eclipse tries to restore your gui, and thus re-open its panels. But if a module uninstall is also happened, then its panels aren't restorable, resulting exactly your problem.
So, simply close the bad panels and try to reopen them. Sometimes it also works.
In short: recreate your workspace, it will probably help. And next time, use Eclipse with some good and frequent backup (I suggest git).

Using Git with Eclipse causing lots of errors

I made a HelloWorld app in Eclipse that had no errors and runs fine. It was located in
Android/workspace/HelloWorld
Then I created a Git repo elsewhere in, say
Git/MyApp
I want to have MyApp contain the HelloWorld project from eclipse, and when I make edits to HelloWorld, it will show up in git status and I can commit and push those changes.
I tried copying the HelloWorld directory from the workspace into MyApp, then pushing my changes to my repo, which was fine.
Then I deleted the original HelloWorld in the workspace, went to Eclipse, hit import existing project, and selected the HelloWorld from the MyApp repo. But this resulted in a ton of compilation errors. How can I do what I'm trying to do without all these errors?
I've attached a link to a screenshot of the errors I get upon compilation.
I have Understood your problem,your project have a relationship with appcompact.Whenever you import your project you have to check below scenario,
Right click your project ---->select properties--->In side bar select "Android" Tab--->now you can see Project build target and Library Box--->in Library box click add and choose appcompact project and then click apply.
After done above one clean and build your project.Then it will work fine.
try Clean operation on your project and then build your project. replay whether it solves the issue or not.
As a matter of fact it looks to me like your eclipse doesnt recognize your app-compat anymore.
This happend to me once too, after I closed and reopend the appcompat-project.
Try to close all your projects -> open the appcompat first -> restart eclipse and maybe do a clean on your project
Hope this helps.

Error when Committing in SVN using subclipse

"org.apache.subversion.javahl.ClientException: svn: E155007:
'C:\User\Bosung\Workspace\Chicken
Survival.settings\org.eclipse.jdt.core.prefs' is not a working copy"
Details is same.
I have this problem when I try to commit to SVN for the past few days and I have no idea how to fix.
I believe this problem occurred after installing Egit but I am not quite sure.
I tried to going back in installation history but this gives me error.
I tried deleting egit, and subclipse and reinstalling subclipse in "installed software" tab but the same problem still exists.
I tried to delete and make a new java project (by copying only the classes I need back into the new project) but same problem still exists.
I am using Version: Indigo Service Release 2 Build id: 20120216-1857
SVN is hosted on projectlocker.com
Help would be greatly appreciated!!
The error description says it: your file is not a working copy. When you commit your project, a Window with all the folders/files to commit will appear. Just uncheck the folder .settings and accept the commit.
I was getting this every time I saved a file in a new directory/package. I added the directory to svn and it seems to have fixed it.

Categories

Resources