android - tagging a list of gerrits as a label -
is there way tag list of gerrits label...after tagging,if repo sync of label,these gerrits should synced workspace..is there option dat?has done before?any advice on appreciated.
commands used repo sync $repo init -u git://git.server.com/platform/manifest.git -b refs/tags/label -m versioned.xml #eg sync label <code snippet> $ repo sync # syncing code
to create tag:
repo forall -c "git tag -a -m \" [ tag description ] \" [ tag-name ] "
push tags remote repository:
repo forall -c "git push origin [tag-name]"
Comments
Post a Comment