@@ -34,6 +34,7 @@ The following information is captured automatically:
- A list of enabled hooks
- The number of loose objects in the repository
- The number of packs and packed objects in the repository
+ - A list of the contents of .git/objects/info (or equivalent)
OPTIONS
-------
@@ -204,6 +204,57 @@ static void get_packed_object_summary(struct strbuf *obj_info, int nongit)
}
+static void list_contents_of_dir_recursively(struct strbuf *contents,
+ struct strbuf *dirpath)
+{
+ struct dirent *d;
+ DIR *dir;
+ size_t path_len;
+
+ dir = opendir(dirpath->buf);
+ if (!dir)
+ return;
+
+ strbuf_complete(dirpath, '/');
+ path_len = dirpath->len;
+
+ while ((d = readdir(dir))) {
+ if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
+ continue;
+
+ strbuf_addbuf(contents, dirpath);
+ strbuf_addstr(contents, d->d_name);
+ strbuf_complete_line(contents);
+
+ if (d->d_type == DT_DIR) {
+ strbuf_addstr(dirpath, d->d_name);
+ list_contents_of_dir_recursively(contents, dirpath);
+ }
+ strbuf_setlen(dirpath, path_len);
+ }
+
+ closedir(dir);
+}
+
+static void get_object_info_summary(struct strbuf *obj_info, int nongit)
+{
+ struct strbuf dirpath = STRBUF_INIT;
+
+ if (nongit) {
+ strbuf_addstr(obj_info,
+ "not run from a git repository - object info unavailable\n");
+ return;
+ }
+
+ strbuf_addstr(&dirpath, get_object_directory());
+ strbuf_complete(&dirpath, '/');
+ strbuf_addstr(&dirpath, "info/");
+
+ list_contents_of_dir_recursively(obj_info, &dirpath);
+
+ strbuf_release(&dirpath);
+}
+
static const char * const bugreport_usage[] = {
N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>]"),
NULL
@@ -292,6 +343,9 @@ int cmd_main(int argc, const char **argv)
get_header(&buffer, "Packed Object Summary");
get_packed_object_summary(&buffer, nongit_ok);
+ get_header(&buffer, "Object Info Summary");
+ get_object_info_summary(&buffer, nongit_ok);
+
report = fopen_for_writing(report_path.buf);
if (report == NULL) {
Miscellaneous information used about the object store can end up in .git/objects/info; this can help us understand what may be going on with the object store when the user is reporting a bug. Otherwise, it could be difficult to track down what is going wrong with an object which isn't kept locally to .git/objects/ or .git/objects/pack. Having some understanding of where the user's objects may be kept can save us some hops during the bug reporting process. Signed-off-by: Emily Shaffer <emilyshaffer@google.com> --- Documentation/git-bugreport.txt | 1 + bugreport.c | 54 +++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+)