Skip to content

Commit 89b339f

Browse files
committed
Constants changed.
1 parent 1b3f6aa commit 89b339f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ObjectiveGit/GTRepository+RemoteOperations.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ - (BOOL)pushRefspecs:(NSArray *)refspecs toRemote:(GTRemote *)remote withOptions
249249

250250
int update_fetchhead = 1;
251251
// Ignored for push
252-
git_remote_autotag_option_t download_tags = GIT_REMOTE_DOWNLOAD_TAGS_FALLBACK;
252+
git_remote_autotag_option_t download_tags = GIT_REMOTE_DOWNLOAD_TAGS_UNSPECIFIED;
253253
NSString *reflog_message = [NSString stringWithFormat:@"pushing remote %@", remote.name];
254254

255255
gitError = git_remote_update_tips(remote.git_remote, &remote_callbacks, update_fetchhead, download_tags, reflog_message.UTF8String);

ObjectiveGit/GTSubmodule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
///
2020
/// These flags are mutually exclusive.
2121
typedef NS_ENUM(NSInteger, GTSubmoduleIgnoreRule) {
22-
GTSubmoduleIgnoreReset = GIT_SUBMODULE_IGNORE_RESET,
22+
GTSubmoduleIgnoreUnspecified = GIT_SUBMODULE_IGNORE_UNSPECIFIED,
2323
GTSubmoduleIgnoreNone = GIT_SUBMODULE_IGNORE_NONE,
2424
GTSubmoduleIgnoreUntracked = GIT_SUBMODULE_IGNORE_UNTRACKED,
2525
GTSubmoduleIgnoreDirty = GIT_SUBMODULE_IGNORE_DIRTY,

0 commit comments

Comments
 (0)