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
int gitError = git_stash_apply(self.git_repository, index, flags);
55
+
if (gitError != GIT_OK) {
56
+
if (error != NULL) *error = [NSErrorgit_errorFor:gitError description:@"Failed to apply stash"failureReason:@"The stash at index %ld couldn't be applied.", index];
int gitError = git_stash_pop(self.git_repository, index, flags);
64
+
if (gitError != GIT_OK) {
65
+
if (error != NULL) *error = [NSErrorgit_errorFor:gitError description:@"Failed to pop stash"failureReason:@"The stash at index %ld couldn't be applied.", index];
0 commit comments