From b262f2c8b273479621145d39eba875346b61d9c6 Mon Sep 17 00:00:00 2001 From: jonnybravo Date: Tue, 11 Apr 2023 17:22:27 +0200 Subject: [PATCH] commit message from python script --- check_and_add_pull_git/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_and_add_pull_git/main.py b/check_and_add_pull_git/main.py index 22866f2..b65cde0 100644 --- a/check_and_add_pull_git/main.py +++ b/check_and_add_pull_git/main.py @@ -25,7 +25,7 @@ class my_git(): if not repo.is_dirty(untracked_files=True): print('No Changes detected.') else: - print("what") + print("Changes detected.") for remote in repo.remotes: print(remote.name, remote.url) repo.git.add('--all')