fenec
fenec

Reputation: 5806

is there any plugin to use git on gedit on ubuntu?

i would like to use a git plugin while coding on gedit. i mean by that buttons for commit or shortcuts. thank you.

Upvotes: 14

Views: 5605

Answers (4)

Rob
Rob

Reputation: 41

I created one that is fully integrated and supports SVN as well as GIT. Even has a little repo viewer. Let me know if you have any trouble with it:

http://gombi.net/#showcase/giterdone

Upvotes: 4

Morgan Christiansson
Morgan Christiansson

Reputation: 29450

I just used the external tools plugin, very trivial to set it up to run gitk

#!/bin/sh
exec gitk $GEDIT_CURRENT_DOCUMENT_PATH

for git add

#!/bin/sh
exec git add $GEDIT_CURRENT_DOCUMENT_PATH

etc

Upvotes: 2

trusktr
trusktr

Reputation: 45494

I found this nice little thing: http://nerdblog.pl/2009/06/01/save-and-commit-to-git-plugin-for-gedit-2-26ave/

Upvotes: 0

peterjmag
peterjmag

Reputation: 6179

I just came across http://github.com/rafaelmws/git-gedit yesterday, but I've yet to try it out.

There's also http://code.google.com/p/gedit-vcs/, which appears to have never made it past the requirements stage.

Upvotes: 1

Related Questions