4 static const char *result_path
, *lock_path
;
6 static void remove_lock_file(void)
12 static int handle_one_ref(const char *path
, const unsigned char *sha1
,
13 int flags
, void *cb_data
)
15 FILE *refs_file
= cb_data
;
17 /* Do not pack the symbolic refs */
18 if (!(flags
& REF_ISSYMREF
))
19 fprintf(refs_file
, "%s %s\n", sha1_to_hex(sha1
), path
);
23 int cmd_pack_refs(int argc
, const char **argv
, const char *prefix
)
28 result_path
= xstrdup(git_path("packed-refs"));
29 lock_path
= xstrdup(mkpath("%s.lock", result_path
));
31 fd
= open(lock_path
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
33 die("unable to create new ref-pack file (%s)", strerror(errno
));
34 atexit(remove_lock_file
);
36 refs_file
= fdopen(fd
, "w");
38 die("unable to create ref-pack file structure (%s)", strerror(errno
));
39 for_each_ref(handle_one_ref
, refs_file
);
42 if (rename(lock_path
, result_path
) < 0)
43 die("unable to overwrite old ref-pack file (%s)", strerror(errno
));