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
description="A race condition in http git-fetch where named refs were force-pushed during the update"
88
-
stderr="error: cannot lock ref 'refs/pull/123456/merge': is at 988881adc9fc3655077dc2d4d757d480b5ea0e11 but expected 7f894307ffc9553edbd0b671cab829786866f7b2"
stderr="fatal: unable to access 'https://example.com/foo-does-not-exist/bar.git/': Failed to connect to configured-https-proxy port 1080 after 0 ms: Couldn't connect to server"
// A race condition in http git-fetch where named refs were force-pushed during the update, would exit status 128
80
+
{true, "error: cannot lock ref 'refs/pull/123456/merge': is at 988881adc9fc3655077dc2d4d757d480b5ea0e11 but expected 7f894307ffc9553edbd0b671cab829786866f7b2"},
81
+
// Missing or unauthorized credentials, would exit status 128
82
+
{false, "fatal: Authentication failed for 'https://example.com/foo-does-not-exist/bar.git/'"},
83
+
// A non-existent remote repository, would exit status 128
84
+
{false, "fatal: Could not read from remote repository."},
85
+
// A non-functioning proxy, would exit status 128
86
+
{false, "fatal: unable to access 'https://example.com/foo-does-not-exist/bar.git/': Failed to connect to configured-https-proxy port 1080 after 0 ms: Couldn't connect to server"},
0 commit comments