From cb059a65ef7d3250a9da0239bacbec7a6da12fd9 Mon Sep 17 00:00:00 2001 From: Vadim Troshchinskiy Date: Fri, 4 Jul 2025 13:28:03 +0200 Subject: [PATCH] refs #2371 Improve commit names --- gitlib/GitLib/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlib/GitLib/__init__.py b/gitlib/GitLib/__init__.py index 6d42950..f233735 100755 --- a/gitlib/GitLib/__init__.py +++ b/gitlib/GitLib/__init__.py @@ -1387,7 +1387,7 @@ class OpengnsysGitLibrary: # progress reports for doing the full push later. origin = repo.create_remote("origin", repo_url) repo.index.add(f"{path}/.gitignore") - repo.index.commit("Initial commit") + repo.index.commit("Add .gitignore") repo.git.push("--force") # Obliterate whatever might have been there self.logger.debug("Fetching origin, callback=%s", self.progress_callback) @@ -1452,7 +1452,7 @@ class OpengnsysGitLibrary: self.logger.info("Committing") - repo.index.commit("Initial commit") + repo.index.commit("Initialize repository") # Restaurar cosas modificadas para git self._restore_metadata(path, destructive_only=True, set_device_uuids=False)