Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TortoiseGit vs Git Extensions

What are the benefits and disadvantage of using either Git Extensions or TortoiseGit on a Windows Based OS?

like image 617
Shawn Mclean Avatar asked May 15 '11 23:05

Shawn Mclean


People also ask

Is TortoiseGit same as Git?

TortoiseGit is a free open-source client for the Git version control system. That is, TortoiseGit manages files over time. Files are stored in a local repository. The repository is much like an ordinary file server, except that it remembers every change ever made to your files and directories.

What is the difference between Git and git extensions?

As illustrated here, GitHub for Windows (G4W) can interface with only the latest version of Visual Studio. This is the main difference, in the context of your question, with Git Extensions, which is a plugin for Visual Studio (2005/2008/2010/2012), as shown in this article.

What is the difference between TortoiseGit and TortoiseSVN?

TortoiseGit can be classified as a tool in the "Git Tools" category, while TortoiseSVN is grouped under "Code Collaboration & Version Control". TortoiseSVN is an open source tool with 39 GitHub stars and 29 GitHub forks.

Does TortoiseGit work with GitHub?

Find the id_rsa file that you created in step (3), you will be prompted for your passphrase. Enter it. IMPORTANT: bring up the TortoiseGit context menu, go to settings .


1 Answers

I don't know GitExtensions, but I can share my experience with TortoiseGit (alluded to by marc_s's comment):

Pros:

  • Excellent integration with Windows (it's a shell extension)
  • Nearly the same UI as TortoiseSVN (if you already used TortoiseSVN, you know what to expect).

Cons:

  • You will have a hard time understanding how to use git.

The problem with TortoiseGit is that people who worked with TortoiseSVN will think everything will (or should) work exactly like in SVN... and end up never really understanding how to work with git. As a personal experience, the company I work migrated from SVN to git after 2 years, and every single developer that used TortoiseGit ended up not really knowing what they are doing and sometimes screwing up their local repositories. In the end, they dropped TortoiseGit and spend time learning git "the hard way" (shell, msysGit on Windows) and everyone has been happy since then.

Conclusion: Just use msysGit directly and properly learn git. You will avoid many headaches in the future.

like image 70
Rafael Ibraim Avatar answered Oct 04 '22 00:10

Rafael Ibraim