Searching for Tags/Branches¶
Overview¶
If you like to search for tags or branches you can use the tag or branch field which contains the names of the tags or branches.
Searching for tags¶
By using the tag field within the search query you will define the pattern you would like search for. The pattern can contain wild card as you might expect they to work e.g. known by the command line.
The following query will find all tags which are existing in all revisions within the repository.
+tag:*
The result list will contain all existing tags incl. Maven Tags which have a particular pattern.
If you like to see only the list of tags without the Maven Tags just extend the query as follows:
+tag:* -maventag:*
If you like to search for Subversion Tags (particular type used by the Subversion Team) you can use a search query as follows:
+subversiontag:*
Searching for branches¶
If you like to search for a branch you can use the branch field to define the pattern for the branch name you would like to search for.
+branch:*