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
Post a Comment