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.
source
share