You are here

Eclipse

Eclipse egit error: An internal Exception occurred during push: git-receive-pack not permitted

When using Eclipse (Indigo) earlier today, I ran into the following error message while trying to push my commits upstream:
An internal Exception occurred during push: [URL] git-receive-pack not permitted

Resolving merge conflicts fixed manually in Eclipse/eGit

I'm using Eclipse (Indigo) and eGit, its Git plugin. Earlier today, when I merged the contents of one branch with my master, I ran into a bunch of conflicts. While I suspect that I should have used the "Team > Merge Tool" to resolve them, as they were rudimentary in nature, I just sorted them out manually. However, eGit did not notice that the conflicts (and their in-file markers) were gone and retained the conflicted icon for each of the affected files.

git-receive-pack not permitted error on pushing upstream

If you ever run into a git-receive-pack not permitted error when using Git, chances are that it's a configuration issue on your end. In my case, I had cloned the repository using via https (which required authentication). However, pushing failed with the aforementioned error. This was due to the fact that I was only allowed to push via SSH. Therefore, once I changed the protocol in the configuration for my checkout, all was well again.

Uninstalling plugins from Eclipse 3.6 (Helios)

I had to do a clean install of Eclipse today and found myself stuck with a dodgy plug-in (subversive). However, when I went to the Help menu, I did not find any option to uninstall software. IIRC, there was something along the lines of Manage configuration here where you could go to makes changes and uninstall plug-ins.

Eclipse: Galileo to Helios upgrade error message - Failed to create the Java Virtual Machine

I just finished upgrading Eclipse from Galileo to the new Helios release. I performed the upgrade by adding Helios to the software sources list and updating and all seemed to go well. However, when I restarted Eclipse, I got a splash image which indicated that the upgrade had gone through and then ran into the following error message:
Failed to create the Java Virtual Machine

COLA: Real-time shared editing in Eclipse

Shared editing is very useful for debugging / walk-throughs etc., and the Real-time shared editing plug-in, which is a part of the Eclipse communication Framework Project is nifty beyond expectations.

The following is a screencast taken from Mustafa Isik's blog:

The joys of the Eclipse update manager

The Eclipse 3.3.1.1 update manager has to be the most annoying updater ever fucking written. What a pile of refuse :/

I'm sure that the Eclipse developer community has their own private updater as I am certain no sane man can stand working with it.

Issues:

  • If I want the update to run in the background, I should also be able to run it in the foreground.
  • If I cancel the update, it should be cancelled immediately. It should not be "cancelling" for the rest of eternity and require a restart of Eclipse to get done.

Removing trailing whitespace in Eclipse

I suck at regex. But the fact that Eclipse leaves trailing whitespace everywhere is pretty fucking annoying. Although, this will apparently be solved in 3.3, that's still a month or so away (IIRC). Anyways, while I normally just use a $ regex search (whitespace switches don't like working in Eclipse's find dialog) to repeatedly weed out the bastards, today, I came across a more robust expression. Here goes:

Find: [\t ]+(?:(\n)|$)

Eclipse + Subversion : RA layer request failed + could not read status line errors

Server: Apache 2.0.52 + SVN 1.4.3 + mod_dav_svn enabled. Most repositories also use a bunch of post commit hooks to automate tasks.
Client: Eclipse 3.2.2 + stock subclipse callisto install.

Error message:

commit -m "commit message." files
RA layer request failed
svn: Commit failed (details follow):
svn: PROPFIND request failed on '/repo/path/!svn/vcc/default'
svn: PROPFIND of '/repo/path/!svn/vcc/default': Could not read status line: connection was closed by server. (http://example.com)

Subscribe to RSS - Eclipse