(copts *C.git_stash_apply_options)
| 181 | } |
| 182 | |
| 183 | func freeStashApplyOptions(copts *C.git_stash_apply_options) { |
| 184 | if copts == nil { |
| 185 | return |
| 186 | } |
| 187 | if copts.progress_payload != nil { |
| 188 | pointerHandles.Untrack(copts.progress_payload) |
| 189 | } |
| 190 | freeCheckoutOptions(&copts.checkout_options) |
| 191 | } |
| 192 | |
| 193 | // Apply applies a single stashed state from the stash list. |
| 194 | // |
no test coverage detected
searching dependent graphs…