0

Anyone know a way to assign a shortcut to git svn dcommit in intellij ? Even better to be able to combine it with the commit altogether.

Actually come to think of it perhaps a branch specific commit hook is the way to go, not sure how to do that either though

barrymac
  • 2,750
  • 1
  • 20
  • 32
  • You have the problem that `git svn dcommit` rewrites history, not sure how IDEA handles that – fge Jan 13 '12 at 13:46
  • It seems to manage ok when I do this externally, just resyncs everything with the filesystem when necessary – barrymac Jan 13 '12 at 16:52

2 Answers2

2

Please note that git svn is not supported in IntelliJ IDEA. A workaround may be to set up External Tools to run the required commands and then assign keyboard shortcuts to these tools.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
0

SubGit provides a great opportunity to use IntelliJ built-in git support with existing Subversion repository.

SubGit works on the server side: once you install it into your Subversion repository, it enables Git access to this repository.

For more details refer to SubGit documentation and git-svn comparison.

vadishev
  • 2,979
  • 20
  • 28