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
@@ -197,6 +198,11 @@ export class PushError extends Error {
197
198
remote ? ` to ${remote}` : ''
198
199
} because some refs failed to push or the push was rejected. The tip of the remote-tracking branch has been updated since the last checkout. Try pulling first.`;
199
200
break;
201
+
casePushErrorReason.PushRejectedRefNotExists:
202
+
message=`Unable to delete branch${branch ? ` '${branch}'` : ''}${
203
+
remote ? ` on ${remote}` : ''
204
+
}, the remote reference does not exist`;
205
+
break;
200
206
casePushErrorReason.PermissionDenied:
201
207
message=`${baseMessage} because you don't have permission to push to this remote repository.`;
0 commit comments