0

my team is using svn for version control. Part of my daily job is to merge the dev branch code to trunk by executing two or three scripts manually. Is there any good SVN GUI or tool to do these studff

nathan
  • 754
  • 1
  • 10
  • 24
  • 5
    Tool suggestion requests are explicitly off-topic on StackOverflow -- see entry #4 in the "some questions are still off-topic" section of http://stackoverflow.com/help/on-topic – Charles Duffy Oct 24 '16 at 17:50

3 Answers3

3

I have good luck using tortoiseSVN: https://tortoisesvn.net/

Alex Kozlowski
  • 206
  • 1
  • 5
2

If you are using Windows: https://tortoisesvn.net/index.de.html

If you are using *nix: http://www.rapidsvn.org/

Or platform independent: http://www.eclipse.org/subversive/

But anyway, for software recommendations please use: https://softwarerecs.stackexchange.com/

Community
  • 1
  • 1
M.K. aka Grisu
  • 2,338
  • 5
  • 17
  • 32
1

This is not "SVN GUI" in common, it's any three-way merge tools, which you can use with SVN (in any GUI or even in console SVN - see --diff3-cmd option of svn merge or merge-tool-cmd parameter in config file)

Community
  • 1
  • 1
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110