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

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

testing - Detect whether test has failed within fixture -

android - Create single AAR file from multiple modules using Gradle -