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
I ran ember-cli-update on a project only to discover that the command would freeze indefinitely. I used the DEBUG to find it froze on the command git tag. Running this command myself I discovered it opened my text editor to ask for a tag message. This was due to me adding the following config to my ~/.gitconfig.
[tag]
gpgsign = true
This can be avoided if the command for commit and tag were passed the --no-sign argument which will disable that flag if someone were to enable it (like I did).
The text was updated successfully, but these errors were encountered:
I ran
ember-cli-update
on a project only to discover that the command would freeze indefinitely. I used theDEBUG
to find it froze on the commandgit tag
. Running this command myself I discovered it opened my text editor to ask for a tag message. This was due to me adding the following config to my~/.gitconfig
.This can be avoided if the command for commit and tag were passed the
--no-sign
argument which will disable that flag if someone were to enable it (like I did).The text was updated successfully, but these errors were encountered: