TortoiseGit vs Git Extensions

后端 未结 9 719
醉梦人生
醉梦人生 2021-01-30 12:31

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

9条回答
  •  星月不相逢
    2021-01-30 13:08

    For fast and easy compilation, customization, and building extensions, GitExtensions is better (C#) than TortoiseGit (Visual C++ MFC)

    For portability, GitExtensions is better (.NET on Windows / mono on Linux/Mac) than TortoiseGit (Win32/64 only)

    To use icon overlay in Explorer, use TortoiseGit

    For performance of some features, TortoiseGit is better because it calls static / dynamic library to retrieve the result from the repository, while GitExtensions only invokes git.exe command line which has larger overhead.

    To migrate from TortoiseSVN, TortoiseGit will be more familiar with than GitExtensions

提交回复
热议问题