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?
Asked
Active
Viewed 137 times
1
-
2Currently 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 Answers
1
User y.bedrov wrote it's not directly possible. I think it's right :((
But there is a simple walk around.
- Open filecontext menu + copy path
- Open shell and run the following command
svn info --show-item=url FILEPATH
s. https://stackoverflow.com/a/47190272/1514029
or
- Open filecontext menu + Subversion + relocate
- Copy SNV URL from "From URL:"
(thanks y.bedrov + Dmitry Cherniachenko from IDEA)

Gerd
- 2,265
- 1
- 27
- 46
-
1Mark 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