diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-22 07:33:21 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-22 07:33:21 +0100 |
commit | ee072260dbff6914c24d956bcc2d46882831f1a0 (patch) | |
tree | 903879eab78ae085ccb956299d6d8007e4427cee /apply.c | |
parent | Merge branch 'js/portable' (diff) | |
parent | cache_name_compare() compares name and stage, nothing else. (diff) | |
download | git-ee072260dbff6914c24d956bcc2d46882831f1a0.tar.xz git-ee072260dbff6914c24d956bcc2d46882831f1a0.zip |
Merge branch 'jc/nostat'
* jc/nostat:
cache_name_compare() compares name and stage, nothing else.
"assume unchanged" git: documentation.
ls-files: split "show-valid-bit" into a different option.
"Assume unchanged" git: --really-refresh fix.
ls-files: debugging aid for CE_VALID changes.
"Assume unchanged" git: do not set CE_VALID with --refresh
"Assume unchanged" git
Diffstat (limited to 'apply.c')
-rw-r--r-- | apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1317,7 +1317,7 @@ static int check_patch(struct patch *patch) return -1; } - changed = ce_match_stat(active_cache[pos], &st); + changed = ce_match_stat(active_cache[pos], &st, 1); if (changed) return error("%s: does not match index", old_name); |