src/main.cpp

changeset 67
7962d771b939
parent 65
ff03ae99323f
--- a/src/main.cpp	Mon Aug 11 20:26:10 2025 +0200
+++ b/src/main.cpp	Thu Oct 09 10:58:03 2025 +0200
@@ -38,7 +38,7 @@
 
 using namespace std::chrono;
 
-static constexpr auto program_version = "1.1.0";
+static constexpr auto program_version = "1.1.1";
 
 static void print_help() {
     fputs(
@@ -235,7 +235,7 @@
                 }
             } else {
                 proc.setbin(settings.git);
-                if (proc.exec({"pull", "-q"})) {
+                if (proc.exec({"pull", "-q", "--all"})) {
                     fprintf(stderr, "Pulling repo '%s' failed - continue without pull.\n", repo.path.c_str());
                 }
             }
@@ -268,6 +268,7 @@
         } else {
             proc.setbin(settings.git);
             if (proc.exec_log({"log",
+                "--all",
                 "--decorate=short",
                 "--decorate-refs=refs/tags/",
                 "--since", std::format("{0}-01-01 00:00:00", report_year),

mercurial