feat: Add git command output display in check_push_access function

This commit is contained in:
Paul Gauthier (aider) 2025-03-04 14:00:51 -08:00
parent 4ef834e295
commit 9c1d050d8b

View file

@ -72,6 +72,8 @@ def check_push_access():
print(result.stderr)
sys.exit(1)
print("Push access to origin repository confirmed.")
print("Git output:")
print(result.stdout)
def main():