From 05d677433dcbb2b0586cf56f2c06a0b0801f0c44 Mon Sep 17 00:00:00 2001 From: rkansal47 Date: Tue, 5 Mar 2024 16:32:37 -0600 Subject: [PATCH] update message --- src/HHbbVV/run_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HHbbVV/run_utils.py b/src/HHbbVV/run_utils.py index 4e83edf6..b7d46873 100644 --- a/src/HHbbVV/run_utils.py +++ b/src/HHbbVV/run_utils.py @@ -79,7 +79,7 @@ def check_branch(git_branch: str, allow_diff_local_repo: bool = False): local_hash = subprocess.getoutput("git rev-parse HEAD") if remote_hash != local_hash: - print_red("Latest local and github commits do not match!") + print_red("Latest local and github commits do not match! Did you push your changes?") print(f"Local commit hash: {local_hash}") print(f"Remote commit hash: {remote_hash}") if allow_diff_local_repo: