Checkout behavior flags
In libgit2, checkout is used to update the working directory and index
to match a target tree. Unlike git checkout, it does not move the HEAD
commit for you - use git_repository_set_head
or the like to do that.
Checkout looks at (up to) four things: the "target" tree you want to check out, the "baseline" tree of what was checked out previously, the working directory for actual files, and the index for staged changes.
You give checkout one of three strategies for update:
GIT_CHECKOUT_NONE
is a dry-run strategy that checks for conflicts,
etc., but doesn't make any actual changes.GIT_CHECKOUT_FORCE
is at the opposite extreme, taking any action to
make the working directory match the target (including potentially
discarding modified files).GIT_CHECKOUT_SAFE
is between these two options, it will only make
modifications that will not lose changes.| target == baseline | target != baseline | ---------------------|-----------------------|----------------------| workdir == baseline | no action | create, update, or | | | delete file | ---------------------|-----------------------|----------------------| workdir exists and | no action | conflict (notify | is != baseline | notify dirty MODIFIED | and cancel checkout) | ---------------------|-----------------------|----------------------| workdir missing, | notify dirty DELETED | create file | baseline present | | | ---------------------|-----------------------|----------------------|
To emulate git checkout
, use GIT_CHECKOUT_SAFE
with a checkout
notification callback (see below) that displays information about dirty
files. The default behavior will cancel checkout on conflicts.
To emulate git checkout-index
, use GIT_CHECKOUT_SAFE
with a
notification callback that cancels the operation if a dirty-but-existing
file is found in the working directory. This core git command isn't
quite "force" but is sensitive about some types of changes.
To emulate git checkout -f
, use GIT_CHECKOUT_FORCE
.
There are some additional flags to modify the behavior of checkout:
default is a dry run, no actual updates
Allow safe updates that cannot overwrite uncommitted data. If the uncommitted changes don't conflict with the checked out files, the checkout will still proceed, leaving the changes intact.
Mutually exclusive with GIT_CHECKOUT_FORCE. GIT_CHECKOUT_FORCE takes precedence over GIT_CHECKOUT_SAFE.
Allow all updates to force working directory to look like index.
Mutually exclusive with GIT_CHECKOUT_SAFE. GIT_CHECKOUT_FORCE takes precedence over GIT_CHECKOUT_SAFE.
Allow checkout to recreate missing files
Allow checkout to make safe updates even if conflicts are found
Remove untracked files not in index (that are not ignored)
Remove ignored files not in index
Only update existing files, don't create new ones
Normally checkout updates index entries as it goes; this stops that. Implies GIT_CHECKOUT_DONT_WRITE_INDEX
.
Don't refresh index/config/etc before doing checkout
Allow checkout to skip unmerged files
For unmerged files, checkout stage 2 from index
For unmerged files, checkout stage 3 from index
Treat pathspec as simple list of exact match file paths
Ignore directories in use, they will be left empty
Don't overwrite ignored files that exist in the checkout target
Write normal merge files for conflicts
Include common ancestor data in diff3 format files for conflicts
Don't overwrite existing files or folders
Normally checkout writes the index upon completion; this prevents that.
Show what would be done by a checkout. Stop after sending notifications; don't update the working directory or index.
Include common ancestor data in zdiff3 format for conflicts
Recursively checkout submodules with same options (NOT IMPLEMENTED)
Recursively checkout submodules if HEAD moved in super repo (NOT IMPLEMENTED)