Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable git 'Push Results' dialog in eclipse

After a push to upstream git operation the eclipse IDE shows a helpful dialog which provides information about the push operation (shown below).

Is there a way to prevent this dialog from popping up?

enter image description here

like image 245
mxro Avatar asked Nov 06 '13 04:11

mxro


People also ask

What is EGit in Eclipse?

Eclipse EGit™ is the Git integration for Eclipse. Git is a distributed SCM, which means every developer has a full copy of all history of every revision of the code, making queries against the history very fast and versatile. The EGit project is implementing Eclipse tooling for the JGit Java implementation of Git.

How do I push changes in Eclipse?

Committing a Change to the Eclipse.org server To do the local commit, select the file, right-click menu, Team -> Commit. 2) To push them back to the server, you need to "Push to Upstream". You can only push to upstream at the project/repo level. You can't push an individual file, like you can in CVS.

What does push to origin do in Eclipse?

When using "Push to upstream..." in Eclipse, the new "local" commits are pushed to remote repository and the remote branch ref is updated in the local repository (so master and origin/master reference the same commit).


1 Answers

One way would be to select, when doing the push, the following checkbox:

Show final report dialog only when it differs from this confirmation report 

The help page mentions:

if you only want to get a report after executing the push if the result differs from this preview.

http://help.eclipse.org/indigo/topic/org.eclipse.egit.doc/help/EGit/User_Guide/images/Egit-0.9-push-wizard-confirm-push.png

That way this dialog box (introduced in Egit1.1) won't pop-up if the push went as expected.

like image 127
VonC Avatar answered Oct 12 '22 07:10

VonC