14

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

fenec
  • 5,637
  • 10
  • 56
  • 82

4 Answers4

4

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

Neeraj Verma
  • 495
  • 4
  • 17
Rob
  • 41
  • 2
2

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

Morgan Christiansson
  • 29,280
  • 1
  • 19
  • 13
1

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.

peterjmag
  • 6,041
  • 1
  • 30
  • 27
  • 1
    i just found something called rabbitVCS, that looks cool.I am trying to make it work but there are no tutorials about it online. – fenec Oct 01 '10 at 20:11
0

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

trusktr
  • 44,284
  • 53
  • 191
  • 263