From 2bc2a0acd6a71079ef460005fea2d5249db57c73 Mon Sep 17 00:00:00 2001 From: jonnybravo Date: Sun, 3 Sep 2023 17:41:03 +0200 Subject: [PATCH] commit message from python script --- check_and_add_pull_git/pull_and_push.py | 1 + 1 file changed, 1 insertion(+) diff --git a/check_and_add_pull_git/pull_and_push.py b/check_and_add_pull_git/pull_and_push.py index 6dd5e9a..d4534d4 100644 --- a/check_and_add_pull_git/pull_and_push.py +++ b/check_and_add_pull_git/pull_and_push.py @@ -22,6 +22,7 @@ class my_git(): def git_push(self, git_folder): repo = git.Repo(git_folder) if not repo.is_dirty(untracked_files=True): + print(repo) print('No Changes detected.') else: print("Changes detected.")