Is there an acceptable Linux targeted GUI client for git-svn?

前端 未结 4 1127
我寻月下人不归
我寻月下人不归 2021-02-04 04:43

My employer uses subversion for version-control, and this is unlikely to change. I\'m interested in learning more about git, and using git-svn to interface with my employer\'s s

相关标签:
4条回答
  • 2021-02-04 05:06

    You can use any GUI client for Git that you want to use. You only have to revert to the command line when you want to interface with the Subversion server (e.g. for committing and updating).

    0 讨论(0)
  • 2021-02-04 05:10

    This page seems to indicate that SmartGit can do what you want. As far as I can tell, you have to do the initial init/clone from cmd/bash though.

    0 讨论(0)
  • 2021-02-04 05:10

    There is no gui client for Git-SVN; so you will have to use the command line to use Git-svn. Fortunately, you don't have to learn much to work git-svn. Some resources, from simple to detailed:

    • Learning git-svn in 5min
    • Git - SVN Crash Course
    • Introduction to git-svn for Subversion/SVK users and deserters
    0 讨论(0)
  • 2021-02-04 05:12

    I wonder if it would be possible to somehow intercept the Push command in git-gui and make it run git-svn dcommit instead? I have already added an git alias to run !git-svn dcommit.

    0 讨论(0)
提交回复
热议问题