I can no longer push my latest commit after the February 13, 2019 update.
See original GitHub issueDescription
When I click the button to push origin, I get a fatal error that says "fault: unable to access 'repo name': schannel" next InitializeSecurityContext failed: Uknown error (0x80092013) - The revocation function was unable to check revocation because the revocation server was offline.". I do not have any corporate proxy settings enabled and disabling my firewall and other antivirus protections didn't solve this issue, which is what others with this issue suggested.Version
- GitHub Desktop: 1.6.2
- Operating system: Windows 8.1 Pro
Steps to Reproduce
Step 1: Click "push origin".Expected Behavior
I expected the push to work successfully.Actual Behavior
Can't push changes.Additional Information
Logs
2019-02-15T16:20:49.516Z - error: [ui] `git -c credential.helper= fetch --progress --prune origin` exited with an unexpected code: 128.fatal: unable to access ‘Repo name’: schannel: next InitializeSecurityContext failed: Unknown error (0x80092013) - The revocation function was unable to check revocation because the revocation server was offline.
Issue Analytics
- State:
- Created 5 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
How can I undo pushed commits using git? - Stack Overflow
You can revert individual commits with: git revert <commit_hash>. This will create a new commit which reverts the changes of the commit you...
Read more >PhpStorm - Commit and push changes to Git repository
In this case, when you try to push, Git will reject your changes because the remote ref is not an ancestor of the...
Read more >How To Undo Last Git Commit - devconnected
The easiest way to undo the last Git commit is to execute the “git reset” command with the “–soft” option that will preserve...
Read more >Release Notes | Firebase - Google
You can see all Firebase release notes for a given SDK by following the links ... "Logs" and "Health" tabs for Cloud Functions...
Read more >2022 Publication 17 - IRS
lowed is 35% of your employ- ment-related expenses. For more ... moved the following 2019 chapters ... February, the IRS can help you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rajzerm thanks for filling that out - I can understand more about what’s happening.
This feels like #3326, but I have a simpler workaround for you to try.
Git for Windows has an escape hatch to bypass these certificate revocation checks (since v2.19.0).
Try setting this global config value:
This should address the issue without needing to go and configure your own certificate bundle.
@rajzerm I’m glad you were able to resolve this, and thanks for confirming the new workaround works for you.
I’m going to leave this open and update our known issues doc to explain this new flag and recommend this workaround.