]> asedeno.scripts.mit.edu Git - git.git/commitdiff
pack-refs: do not pack symbolic refs.
authorJunio C Hamano <junkio@cox.net>
Thu, 21 Sep 2006 07:06:05 +0000 (00:06 -0700)
committerJunio C Hamano <junkio@cox.net>
Thu, 21 Sep 2006 07:06:50 +0000 (00:06 -0700)
Now we can tell which one is symbolic and which one is not, it
is easy to do so.

Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-pack-refs.c

index 98710893b04c1747635776eb4f126cc18c860e35..0fc8a555e7615a084e3b5ba43866f8ef9043320a 100644 (file)
@@ -14,7 +14,9 @@ static int handle_one_ref(const char *path, const unsigned char *sha1,
 {
        FILE *refs_file = cb_data;
 
-       fprintf(refs_file, "%s %s\n", sha1_to_hex(sha1), path);
+       /* Do not pack the symbolic refs */
+       if (!(flags & REF_ISSYMREF))
+               fprintf(refs_file, "%s %s\n", sha1_to_hex(sha1), path);
        return 0;
 }