File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ - (IBAction) createBranch:(id)sender
88
88
}
89
89
90
90
NSString *refExistsReturnMessage;
91
- if ([self .repository refExists: ref checkOnRemotesWithoutBranches: YES resultMessage: &refExistsReturnMessage])
91
+ if ([self .repository refExists: ref checkOnRemotesWithoutBranches: NO resultMessage: &refExistsReturnMessage])
92
92
{
93
93
NSError *error = [NSError errorWithDomain: PBGitRepositoryErrorDomain
94
94
code: 0
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ - (IBAction) createTag:(id)sender
69
69
}
70
70
71
71
NSString *refExistsReturnMessage;
72
- if ([self .repository refExists: ref checkOnRemotesWithoutBranches: YES resultMessage: &refExistsReturnMessage])
72
+ if ([self .repository refExists: ref checkOnRemotesWithoutBranches: NO resultMessage: &refExistsReturnMessage])
73
73
{
74
74
NSError *error = [NSError errorWithDomain: PBGitRepositoryErrorDomain
75
75
code: 0
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ - (IBAction)renameRef:(id)sender
89
89
}
90
90
91
91
NSString *refExistsReturnMessage;
92
- if ([self .repository refExists: refWithNewName checkOnRemotesWithoutBranches: YES resultMessage: &refExistsReturnMessage])
92
+ if ([self .repository refExists: refWithNewName checkOnRemotesWithoutBranches: NO resultMessage: &refExistsReturnMessage])
93
93
{
94
94
NSError *error = [NSError errorWithDomain: PBGitRepositoryErrorDomain
95
95
code: 0
You can’t perform that action at this time.
0 commit comments