I am unable to push the annotated tag in my git remote repository. All the access permission have been provided in gerrit. eg. [refs/*]
I am creating the tag using the below command
git tag -a v1.0 -m 'Base Version' 712d77e
When i try to push using the below commands
git push origin v1.0
or
git push origin --tags
I get the following error.
Counting objects: 1, done.
Writing objects: 100% (1/1), 157 bytes, done.
Total 1 (delta 0), reused 0 (delta 0)
remote: Processing changes: refs: 1, done
To ssh://...
! [remote rejected] v1.0 -> v1.0 (prohibited by Gerrit)
error: failed to push some refs to 'ssh://...'
Please let me know how I should be able to push tags in repository.
Thanks....