diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-21 22:33:21 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-21 22:33:21 -0800 |
commit | ee072260dbff6914c24d956bcc2d46882831f1a0 (patch) | |
tree | 903879eab78ae085ccb956299d6d8007e4427cee /entry.c | |
parent | 712b1dd389ad5bcdbaab0279641f0970702fc1f1 (diff) | |
parent | 7b80be150ce137a790f498a69a784d61d8fc2e78 (diff) | |
download | git-ee072260dbff6914c24d956bcc2d46882831f1a0.tar.gz git-ee072260dbff6914c24d956bcc2d46882831f1a0.tar.xz |
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 'entry.c')
-rw-r--r-- | entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ int checkout_entry(struct cache_entry *ce, struct checkout *state) strcpy(path + len, ce->name); if (!lstat(path, &st)) { - unsigned changed = ce_match_stat(ce, &st); + unsigned changed = ce_match_stat(ce, &st, 1); if (!changed) return 0; if (!state->force) { |