You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If assign created a version, you'll get this long output:
$ gto assign classifier \
--repo $REPO \
--version v0.0.2
--stage dev
Created git tag '[email protected]' that registers version
Running `git push origin [email protected]`
Successfully pushed git tag [email protected] on remote.
Created git tag 'classifier#dev#1' that assigns stage
Running `git push origin classifier#dev#1`
Successfully pushed git tag classifier#dev#1 on remote.
Would be more friendly to get something like:
$ gto assign classifier \
--repo $REPO \
--version v0.0.2
--stage dev
Created git tag '[email protected]' that registers version
Created git tag 'classifier#dev#1' that assigns stage
Running `git push origin [email protected] classifier#dev#1`
Successfully pushed git tags on remote.
The text was updated successfully, but these errors were encountered:
If
assign
created a version, you'll get this long output:Would be more friendly to get something like:
The text was updated successfully, but these errors were encountered: