Highlight / specify line number in visual svn via url

I have an svn repository and have java files. I can access the files in the repository via url in a web browser. eg

https: //serverName/svn/repositoryName/file1.java

This java file has 100 lines. Is there a way that I can go to any line number / highlight the line number in this file at the url?

In git, it is possible to highlight the line number if I pass the line number parameter in the git url. those.

https: //servername/git/repository/file1.java # L45

will show file1.java in the browser, and also highlight line 45 of file1.java.

I am looking for a similar function in svn to highlight a specific line number. At the moment, I am using the visual SVN server manager to manage all the SVN actions on the server.

+4
source share
1 answer

I am pleased to inform you that we have released VisualSVN Server 4.0.0. Now you can add links to line numbers and highlight lines of code. Please see the Notes to the release and the list of changes for more information.

enter image description here

You can try this feature on the demo server . You can download VisualSVN Server 4.0.0 for free from the main download page (no registration required!).

0
source

Source: https://habr.com/ru/post/1654633/


All Articles