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've added a shell for it, the code just needs to be filled in now.
Background: Some corporate networks block the GitHub git protocol, @SylvainCorlay . The goal of this check is to test to see if the connection is blocked, and if it is blocked, warn the user ahead of time. Suggest to the user git config --global url."https://github".insteadOf git://github or git config --global url."https://".insteadOf git:// ... Or even better, prompt the user and then do it for them if they agree!!!
To prompt, we can use the handy-dandy this.yesNo function in the StepBase.
The text was updated successfully, but these errors were encountered:
I've added a shell for it, the code just needs to be filled in now.
Background: Some corporate networks block the GitHub git protocol, @SylvainCorlay . The goal of this check is to test to see if the connection is blocked, and if it is blocked, warn the user ahead of time. Suggest to the user
git config --global url."https://github".insteadOf git://github
orgit config --global url."https://".insteadOf git://
... Or even better, prompt the user and then do it for them if they agree!!!To prompt, we can use the handy-dandy
this.yesNo
function in the StepBase.The text was updated successfully, but these errors were encountered: