1

You can get the URL in the Intellij SVN Browser. But it's awkward. Is there a possibility to get the SVN link of a file, without the SVN browser, i.e. over the Intellij file context menu?

Gerd
  • 2,265
  • 1
  • 27
  • 46
  • 2
    Currently it's not possible. There is related request on YouTrack: https://youtrack.jetbrains.com/issue/IDEA-67176 . As a workaround you could use "Subversion > Relocate..." action. – y.bedrov Mar 15 '19 at 13:00
  • Write this as answer and I vote you. – Gerd Mar 15 '19 at 13:02

1 Answers1

1

User y.bedrov wrote it's not directly possible. I think it's right :((

But there is a simple walk around.

  1. Open filecontext menu + copy path
  2. Open shell and run the following command svn info --show-item=url FILEPATH

s. https://stackoverflow.com/a/47190272/1514029

or

  1. Open filecontext menu + Subversion + relocate
  2. Copy SNV URL from "From URL:"

(thanks y.bedrov + Dmitry Cherniachenko from IDEA)

Gerd
  • 2,265
  • 1
  • 27
  • 46
  • 1
    Mark your answer as accepted and remember to update it when this request gets resolved https://youtrack.jetbrains.com/issue/IDEA-67176 – bahrep Mar 15 '19 at 13:25
  • 2
    IMHO "Subversion > Relocate..." is a faster workaround – y.bedrov Mar 15 '19 at 13:32