Checkout notification flags
Checkout will invoke an options notification callback (notify_cb
) for
certain cases - you pick which ones via notify_flags
:
- GIT_CHECKOUT_NOTIFY_CONFLICT invokes checkout on conflicting paths.
- GIT_CHECKOUT_NOTIFY_DIRTY notifies about "dirty" files, i.e. those that
do not need an update but no longer match the baseline. Core git
displays these files when checkout runs, but won't stop the checkout.
- GIT_CHECKOUT_NOTIFY_UPDATED sends notification for any file changed.
- GIT_CHECKOUT_NOTIFY_UNTRACKED notifies about untracked files.
- GIT_CHECKOUT_NOTIFY_IGNORED notifies about ignored files.
Returning a non-zero value from this callback will cancel the checkout.
Notification callbacks are made prior to modifying any files on disk.
GIT_CHECKOUT_NOTIFY_NONE
0
GIT_CHECKOUT_NOTIFY_CONFLICT
1
GIT_CHECKOUT_NOTIFY_DIRTY
2
GIT_CHECKOUT_NOTIFY_UPDATED
3
GIT_CHECKOUT_NOTIFY_UNTRACKED
4
GIT_CHECKOUT_NOTIFY_IGNORED
5
GIT_CHECKOUT_NOTIFY_ALL
6