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
Since we released it with # already, I don't think we need to change this anytime soon.
Still, when we print a git push suggestion, we need to escape those characters I believe (how this will work in shells where you don't need to escape them? Won't it break there?)
e.g. in
$ gto assign xx --stage prod
Created git tag 'xx#prod#1' that assigns stage to version 'v0.0.1'
To push the changes upstream, run:
git push xx#prod#1
One more things with this: git push xx#prod#1 miss remote name. E.g. it should be git push origin xx#prod#1 or something. Not sure how to print this in CLI output. git push origin xx#prod#1 or git push <remote> xx#prod#1 to avoid blindly copy-pasting and running the suggestion?
Rn promotions tags look like
rf#prod
.#
requires escaping in some shells. Is there a better alternative? Need to check@
also.The text was updated successfully, but these errors were encountered: