File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ NS_ASSUME_NONNULL_BEGIN
66
66
// /
67
67
// / index - The index of the stash to apply. 0 is the latest one.
68
68
// / flags - The flags to use when applying the stash.
69
- // / options - The options to use when checking out.
69
+ // / options - The options to use when checking out (if nil, use the defaults provided by libgit2) .
70
70
// / error - If not NULL, set to any error that occurred.
71
71
// / progressBlock - A block that will be executed on each step of the stash application.
72
72
// /
@@ -77,7 +77,7 @@ NS_ASSUME_NONNULL_BEGIN
77
77
// /
78
78
// / index - The index of the stash to apply. 0 is the most recent stash.
79
79
// / flags - The flags to use when applying the stash.
80
- // / options - The options to use when checking out.
80
+ // / options - The options to use when checking out (if nil, use the defaults provided by libgit2) .
81
81
// / error - If not NULL, set to any error that occurred.
82
82
// / progressBlock - A block that will be executed on each step of the stash application.
83
83
// /
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ - (BOOL)applyStashAtIndex:(NSUInteger)index flags:(GTRepositoryStashApplyFlag)fl
63
63
git_stash_apply_options stash_options = GIT_STASH_APPLY_OPTIONS_INIT;
64
64
65
65
stash_options.flags = (git_stash_apply_flags)flags;
66
+
66
67
if (progressBlock != nil ) {
67
68
stash_options.progress_cb = stashApplyProgressCallback;
68
69
stash_options.progress_payload = (__bridge void *)progressBlock;
@@ -84,6 +85,7 @@ - (BOOL)popStashAtIndex:(NSUInteger)index flags:(GTRepositoryStashApplyFlag)flag
84
85
git_stash_apply_options stash_options = GIT_STASH_APPLY_OPTIONS_INIT;
85
86
86
87
stash_options.flags = (git_stash_apply_flags)flags;
88
+
87
89
if (progressBlock != nil ) {
88
90
stash_options.progress_cb = stashApplyProgressCallback;
89
91
stash_options.progress_payload = (__bridge void *)progressBlock;
You can’t perform that action at this time.
0 commit comments