mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
chore: upgrade to libgit2-1.2.0
This commit is contained in:
parent
b83fea9360
commit
a1e420d86c
36 changed files with 2889 additions and 1024 deletions
|
@ -69,89 +69,141 @@ typedef int GIT_CALLBACK(git_status_cb)(
|
|||
* With `git_status_foreach_ext`, this will control which changes get
|
||||
* callbacks. With `git_status_list_new`, these will control which
|
||||
* changes are included in the list.
|
||||
*
|
||||
* - GIT_STATUS_SHOW_INDEX_AND_WORKDIR is the default. This roughly
|
||||
* matches `git status --porcelain` regarding which files are
|
||||
* included and in what order.
|
||||
* - GIT_STATUS_SHOW_INDEX_ONLY only gives status based on HEAD to index
|
||||
* comparison, not looking at working directory changes.
|
||||
* - GIT_STATUS_SHOW_WORKDIR_ONLY only gives status based on index to
|
||||
* working directory comparison, not comparing the index to the HEAD.
|
||||
*/
|
||||
typedef enum {
|
||||
/**
|
||||
* The default. This roughly matches `git status --porcelain` regarding
|
||||
* which files are included and in what order.
|
||||
*/
|
||||
GIT_STATUS_SHOW_INDEX_AND_WORKDIR = 0,
|
||||
|
||||
/**
|
||||
* Only gives status based on HEAD to index comparison, not looking at
|
||||
* working directory changes.
|
||||
*/
|
||||
GIT_STATUS_SHOW_INDEX_ONLY = 1,
|
||||
|
||||
/**
|
||||
* Only gives status based on index to working directory comparison,
|
||||
* not comparing the index to the HEAD.
|
||||
*/
|
||||
GIT_STATUS_SHOW_WORKDIR_ONLY = 2,
|
||||
} git_status_show_t;
|
||||
|
||||
/**
|
||||
* Flags to control status callbacks
|
||||
*
|
||||
* - GIT_STATUS_OPT_INCLUDE_UNTRACKED says that callbacks should be made
|
||||
* on untracked files. These will only be made if the workdir files are
|
||||
* included in the status "show" option.
|
||||
* - GIT_STATUS_OPT_INCLUDE_IGNORED says that ignored files get callbacks.
|
||||
* Again, these callbacks will only be made if the workdir files are
|
||||
* included in the status "show" option.
|
||||
* - GIT_STATUS_OPT_INCLUDE_UNMODIFIED indicates that callback should be
|
||||
* made even on unmodified files.
|
||||
* - GIT_STATUS_OPT_EXCLUDE_SUBMODULES indicates that submodules should be
|
||||
* skipped. This only applies if there are no pending typechanges to
|
||||
* the submodule (either from or to another type).
|
||||
* - GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS indicates that all files in
|
||||
* untracked directories should be included. Normally if an entire
|
||||
* directory is new, then just the top-level directory is included (with
|
||||
* a trailing slash on the entry name). This flag says to include all
|
||||
* of the individual files in the directory instead.
|
||||
* - GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH indicates that the given path
|
||||
* should be treated as a literal path, and not as a pathspec pattern.
|
||||
* - GIT_STATUS_OPT_RECURSE_IGNORED_DIRS indicates that the contents of
|
||||
* ignored directories should be included in the status. This is like
|
||||
* doing `git ls-files -o -i --exclude-standard` with core git.
|
||||
* - GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX indicates that rename detection
|
||||
* should be processed between the head and the index and enables
|
||||
* the GIT_STATUS_INDEX_RENAMED as a possible status flag.
|
||||
* - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates that rename
|
||||
* detection should be run between the index and the working directory
|
||||
* and enabled GIT_STATUS_WT_RENAMED as a possible status flag.
|
||||
* - GIT_STATUS_OPT_SORT_CASE_SENSITIVELY overrides the native case
|
||||
* sensitivity for the file system and forces the output to be in
|
||||
* case-sensitive order
|
||||
* - GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY overrides the native case
|
||||
* sensitivity for the file system and forces the output to be in
|
||||
* case-insensitive order
|
||||
* - GIT_STATUS_OPT_RENAMES_FROM_REWRITES indicates that rename detection
|
||||
* should include rewritten files
|
||||
* - GIT_STATUS_OPT_NO_REFRESH bypasses the default status behavior of
|
||||
* doing a "soft" index reload (i.e. reloading the index data if the
|
||||
* file on disk has been modified outside libgit2).
|
||||
* - GIT_STATUS_OPT_UPDATE_INDEX tells libgit2 to refresh the stat cache
|
||||
* in the index for files that are unchanged but have out of date stat
|
||||
* information in the index. It will result in less work being done on
|
||||
* subsequent calls to get status. This is mutually exclusive with the
|
||||
* NO_REFRESH option.
|
||||
*
|
||||
* Calling `git_status_foreach()` is like calling the extended version
|
||||
* with: GIT_STATUS_OPT_INCLUDE_IGNORED, GIT_STATUS_OPT_INCLUDE_UNTRACKED,
|
||||
* and GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS. Those options are bundled
|
||||
* together as `GIT_STATUS_OPT_DEFAULTS` if you want them as a baseline.
|
||||
*/
|
||||
typedef enum {
|
||||
/**
|
||||
* Says that callbacks should be made on untracked files.
|
||||
* These will only be made if the workdir files are included in the status
|
||||
* "show" option.
|
||||
*/
|
||||
GIT_STATUS_OPT_INCLUDE_UNTRACKED = (1u << 0),
|
||||
|
||||
/**
|
||||
* Says that ignored files get callbacks.
|
||||
* Again, these callbacks will only be made if the workdir files are
|
||||
* included in the status "show" option.
|
||||
*/
|
||||
GIT_STATUS_OPT_INCLUDE_IGNORED = (1u << 1),
|
||||
|
||||
/**
|
||||
* Indicates that callback should be made even on unmodified files.
|
||||
*/
|
||||
GIT_STATUS_OPT_INCLUDE_UNMODIFIED = (1u << 2),
|
||||
|
||||
/**
|
||||
* Indicates that submodules should be skipped.
|
||||
* This only applies if there are no pending typechanges to the submodule
|
||||
* (either from or to another type).
|
||||
*/
|
||||
GIT_STATUS_OPT_EXCLUDE_SUBMODULES = (1u << 3),
|
||||
|
||||
/**
|
||||
* Indicates that all files in untracked directories should be included.
|
||||
* Normally if an entire directory is new, then just the top-level
|
||||
* directory is included (with a trailing slash on the entry name).
|
||||
* This flag says to include all of the individual files in the directory
|
||||
* instead.
|
||||
*/
|
||||
GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS = (1u << 4),
|
||||
|
||||
/**
|
||||
* Indicates that the given path should be treated as a literal path,
|
||||
* and not as a pathspec pattern.
|
||||
*/
|
||||
GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH = (1u << 5),
|
||||
|
||||
/**
|
||||
* Indicates that the contents of ignored directories should be included
|
||||
* in the status. This is like doing `git ls-files -o -i --exclude-standard`
|
||||
* with core git.
|
||||
*/
|
||||
GIT_STATUS_OPT_RECURSE_IGNORED_DIRS = (1u << 6),
|
||||
|
||||
/**
|
||||
* Indicates that rename detection should be processed between the head and
|
||||
* the index and enables the GIT_STATUS_INDEX_RENAMED as a possible status
|
||||
* flag.
|
||||
*/
|
||||
GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX = (1u << 7),
|
||||
|
||||
/**
|
||||
* Indicates that rename detection should be run between the index and the
|
||||
* working directory and enabled GIT_STATUS_WT_RENAMED as a possible status
|
||||
* flag.
|
||||
*/
|
||||
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR = (1u << 8),
|
||||
|
||||
/**
|
||||
* Overrides the native case sensitivity for the file system and forces
|
||||
* the output to be in case-sensitive order.
|
||||
*/
|
||||
GIT_STATUS_OPT_SORT_CASE_SENSITIVELY = (1u << 9),
|
||||
|
||||
/**
|
||||
* Overrides the native case sensitivity for the file system and forces
|
||||
* the output to be in case-insensitive order.
|
||||
*/
|
||||
GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY = (1u << 10),
|
||||
|
||||
/**
|
||||
* Iindicates that rename detection should include rewritten files.
|
||||
*/
|
||||
GIT_STATUS_OPT_RENAMES_FROM_REWRITES = (1u << 11),
|
||||
|
||||
/**
|
||||
* Bypasses the default status behavior of doing a "soft" index reload
|
||||
* (i.e. reloading the index data if the file on disk has been modified
|
||||
* outside libgit2).
|
||||
*/
|
||||
GIT_STATUS_OPT_NO_REFRESH = (1u << 12),
|
||||
|
||||
/**
|
||||
* Tells libgit2 to refresh the stat cache in the index for files that are
|
||||
* unchanged but have out of date stat einformation in the index.
|
||||
* It will result in less work being done on subsequent calls to get status.
|
||||
* This is mutually exclusive with the NO_REFRESH option.
|
||||
*/
|
||||
GIT_STATUS_OPT_UPDATE_INDEX = (1u << 13),
|
||||
|
||||
/**
|
||||
* Normally files that cannot be opened or read are ignored as
|
||||
* these are often transient files; this option will return
|
||||
* unreadable files as `GIT_STATUS_WT_UNREADABLE`.
|
||||
*/
|
||||
GIT_STATUS_OPT_INCLUDE_UNREADABLE = (1u << 14),
|
||||
|
||||
/**
|
||||
* Unreadable files will be detected and given the status
|
||||
* untracked instead of unreadable.
|
||||
*/
|
||||
GIT_STATUS_OPT_INCLUDE_UNREADABLE_AS_UNTRACKED = (1u << 15),
|
||||
} git_status_opt_t;
|
||||
|
||||
|
@ -168,7 +220,10 @@ typedef enum {
|
|||
*
|
||||
*/
|
||||
typedef struct {
|
||||
unsigned int version; /**< The version */
|
||||
/**
|
||||
* The struct version; pass `GIT_STATUS_OPTIONS_VERSION`.
|
||||
*/
|
||||
unsigned int version;
|
||||
|
||||
/**
|
||||
* The `show` value is one of the `git_status_show_t` constants that
|
||||
|
@ -177,21 +232,22 @@ typedef struct {
|
|||
git_status_show_t show;
|
||||
|
||||
/**
|
||||
* The `flags` value is an OR'ed combination of the `git_status_opt_t`
|
||||
* values above.
|
||||
* The `flags` value is an OR'ed combination of the
|
||||
* `git_status_opt_t` values above.
|
||||
*/
|
||||
unsigned int flags;
|
||||
|
||||
/**
|
||||
* The `pathspec` is an array of path patterns to match (using
|
||||
* fnmatch-style matching), or just an array of paths to match exactly if
|
||||
* `GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH` is specified in the flags.
|
||||
* fnmatch-style matching), or just an array of paths to match
|
||||
* exactly if `GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH` is specified
|
||||
* in the flags.
|
||||
*/
|
||||
git_strarray pathspec;
|
||||
|
||||
/**
|
||||
* The `baseline` is the tree to be used for comparison to the working directory
|
||||
* and index; defaults to HEAD.
|
||||
* The `baseline` is the tree to be used for comparison to the
|
||||
* working directory and index; defaults to HEAD.
|
||||
*/
|
||||
git_tree *baseline;
|
||||
} git_status_options;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue