How Do I "upload" Tags To Gerrit Using Repo?
I have inherited an Android project that uses the Gerrit and Repo tools to manage the Git repositories on a VM. My normal work flow involves using the git add and git commit comma
Solution 1:
For upload purposes, the Repo tool is only capable of uploading commits for review. It can't upload tags. You can use git push --tags
just like you would with any other Git server. Just make sure you have the necessary permissions; in particular you'll need Push Annotated Tag for refs/tags/* (and probably Push Signed Tag too), Forge Author, and Forge Committer. The latter two are required for you to be allowed to upload tag objects created by someone other than yourself.
Post a Comment for "How Do I "upload" Tags To Gerrit Using Repo?"