diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-01 21:45:56 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 21:45:56 -0800 |
commit | b6b626fad7463940dcba6fab879cbe72dce0d36a (patch) | |
tree | 1086dbe6fc0f0bb9d57e6e7c17465d04708971a0 | |
parent | 009315499e789d241998fcc5add1f109af8ba0e6 (diff) | |
parent | c401cb48e77459a4ccad76888ad31bef252facc5 (diff) | |
download | git-b6b626fad7463940dcba6fab879cbe72dce0d36a.tar.gz |
Merge branch 'js/refs'
* js/refs:
Warn about invalid refs
-rw-r--r-- | refs.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -151,10 +151,15 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u break; continue; } - if (read_ref(git_path("%s", path), sha1) < 0) + if (read_ref(git_path("%s", path), sha1) < 0) { + fprintf(stderr, "%s points nowhere!", path); continue; - if (!has_sha1_file(sha1)) + } + if (!has_sha1_file(sha1)) { + fprintf(stderr, "%s does not point to a valid " + "commit object!", path); continue; + } retval = fn(path, sha1); if (retval) break; |