We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98b5f9 commit fe0fa38Copy full SHA for fe0fa38
src/main/java/org/scm4j/vcs/svn/SVNVCS.java
@@ -761,6 +761,9 @@ public Boolean isRevisionTagged(String revision) {
761
@Override
762
public VCSTag getTagByName(String tagName) {
763
try {
764
+ if (repository.info(TAGS_PATH + tagName, -1L) == null) {
765
+ return null;
766
+ }
767
SVNLogEntry entry = revToSVNEntry(TAGS_PATH + tagName, -1L);
768
769
Long copyFromRevision = -1L;
0 commit comments