-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Asset-Sync] Git tagging hangs if tag signing enabled #4720
Labels
Asset-Sync
Any issues relating to moving test assets out of repos.
Comments
ghost
added
the
needs-triage
Workflow: This is a new issue that needs to be triaged to the appropriate team.
label
Nov 16, 2022
scbedd
added
Asset-Sync
Any issues relating to moving test assets out of repos.
and removed
needs-triage
Workflow: This is a new issue that needs to be triaged to the appropriate team.
labels
Nov 17, 2022
Broke livetests with original PR that resolved this. Reverting and trying again. |
github-project-automation
bot
moved this from 🎊Closed
to 🤔Triage
in Azure SDK EngSys 🚢🎉
Jan 13, 2023
Resolved in #5139 |
github-project-automation
bot
moved this from 🔬 Dev in PR
to 🎊 Closed
in Azure SDK EngSys 🚢🎉
Jun 29, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For those of us with GPG signing enabled locally for all commits/tags, the process to push a new tag hangs because a signed tag requires a tag message. So
git tag
will automatically open the user's editor. This causes the outer process to hang indefinitely.After killing the process, I get:
Some workarounds/solutions could be to:
-m
message with thegit tag
command so the editor does not open.-c tag.gpgsign=false
parameter with thegit tag
command. To get around this issue, I had togit config --global tag.gpgsign false
The text was updated successfully, but these errors were encountered: