git tag - Validating a tag name in a git repository -


i have 13 git remote repositories. in local machine have folder remote repositories "added" using git remote add command. want find whether tag "v1.0" present in particular remote repository.

i tried with: git rev-list v1.0

but in command cant specify remote repository name.

is there command similar git rev-list in can specify remote repository name also?

the ls-remote subcommand should want:

git ls-remote --tags https://git.example.com/repo.git "v1.0" 

Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -