Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Reading SO I still find nice, new tools for using with git. If you know any, please share it answering this question.

My first proposal is:

gitolite, a tool for managing access to git repositories, which is an newer version of gitosis.

(Please post one tool for an answer, with short description, so we could easily comment them).

So:

  • Which git tools do you consider most useful?
share|improve this question
2  
Without gitolite in answer, we can't vote on it. – Jakub Narębski Oct 3 '10 at 14:38

closed as not constructive by George Stocker Aug 6 '12 at 2:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 20 down vote accepted

gitflow - a set of Git extensions to provide high-level repository operations for Vincent Driessen's branching model.

This workflow is described in:

nvie.com - A successful Git branching model

(the image below is hotlinked from the above article)

Branching model

share|improve this answer

There is such list of git tools on the "Interfaces, frontends, and tools" page on Git Wiki already.

share|improve this answer
Jakub's link appears to be is dead. Here is a [very rough] mirror (I think, but I never saw the original) Interfaces, frontends, and tools - Git SCM Wiki – Andrew Oct 5 '11 at 18:23
Git Wiki is currently down after break-in at kernel.org; only some services are present currently. I have seen mirror somewhere, but I forgot to bookmark the URL. – Jakub Narębski Oct 7 '11 at 6:42

meld is a nice three pane visual diff and merge tool for git.

share|improve this answer

GitX is an excellent gitk replacement for Mac OS X. Unlike gitk, it's written using Cocoa and doesn't require X11.

share|improve this answer
Any reasons for this replacement? – takeshin Oct 3 '10 at 8:31

git-ftp - for deploying repositories to hosts that have only FTP access.

Usage:

$ git ftp push ftp://host.example.com/public_html --user <user> -p <password>
share|improve this answer

Gource - visualise your repository.

Gource

share|improve this answer
Super cool, is it useful? – AlexanderN Apr 24 '12 at 23:05
it's so awesome – Coc B. May 26 '12 at 14:14

git commit notifier for e-mailing diffs upon commits.

Sample e-mail:

example-mail

share|improve this answer

git-number allows you to use numbers for dealing with files in git:

$ alias gn='git number'                                                                                                 
$ alias ga='git number add'                                                                                             

$ gn                                                                                                                    
# On branch master                                                                                                      
# Untracked files:                                                                                                      
#   (use "git add <file>..." to include in what will be committed)                                                      
#                                                                                                                       
#1      .README.swp                                                                                                     
#2      README                                                                                                          
$                                                                                                                       

Notice the numbers before the filenames. Now you can do this:

$ ga 2                                                                                                                  
git add  README  # <- It does this in the background                                                                    

See the README.markdown on github for more details.

share|improve this answer
Very handy one. Unstage command would be very helpful. – takeshin Jan 20 '12 at 15:36

Not the answer you're looking for? Browse other questions tagged or ask your own question.