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 two strategies for update:
GIT_CHECKOUT_SAFE
is the default, and similar to git's default,
which will make modifications that will not lose changes in the
working directory.| 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 | | | ---------------------|-----------------------|----------------------|
GIT_CHECKOUT_FORCE
will take any action to make the working
directory match the target (including potentially discarding
modified files).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:
GIT_CHECKOUT_DRY_RUN
is a dry-run strategy that checks for conflicts,
etc., but doesn't make any actual changes.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.
Allow all updates to force working directory to look like the index, potentially losing data in the process.
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.
Perform a "dry run", reporting what would be done but without actually making changes in the working directory or the index.
Include common ancestor data in zdiff3 format for conflicts
Do not do a checkout and do not fire callbacks; this is primarily useful only for internal functions that will perform the checkout themselves but need to pass checkout options into another function, for example, git_clone
.
Recursively checkout submodules with same options (NOT IMPLEMENTED)
Recursively checkout submodules if HEAD moved in super repo (NOT IMPLEMENTED)