diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-11-18 18:06:41 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-11-18 18:06:41 +0100 |
commit | c100c3cc30dd948c881abd96720ca4fb2ddbb82f (patch) | |
tree | dc0a17a9629ff42aa9666c803756be888a178f57 | |
parent | 84bb2212e86c54f67dc18cf803bd2ac6edf24804 (diff) | |
download | stagit-fork-c100c3cc30dd948c881abd96720ca4fb2ddbb82f.zip |
detect filetype changes in diff (for example a normal file to symlink)
-rw-r--r-- | stagit.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -114,7 +114,9 @@ commitinfo_getstats(struct commitinfo *ci) } git_diff_init_options(&opts, GIT_DIFF_OPTIONS_VERSION); - opts.flags |= GIT_DIFF_DISABLE_PATHSPEC_MATCH; + opts.flags |= GIT_DIFF_DISABLE_PATHSPEC_MATCH | + GIT_DIFF_IGNORE_SUBMODULES | + GIT_DIFF_INCLUDE_TYPECHANGE; if (git_diff_tree_to_tree(&(ci->diff), repo, ci->parent_tree, ci->commit_tree, &opts)) goto err; |