Skip to content

Commit

Permalink
remote -v
Browse files Browse the repository at this point in the history
remote -v
  • Loading branch information
piotrnarajowski committed Jul 16, 2024
1 parent a8d961b commit 860d309
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/check_for_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ def main():
['git', 'rev-parse', 'HEAD', 'HEAD^', 'master', 'origin/master'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=True
)

remote = subprocess.run(
['git', 'remote', '-v'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=True
)

print(f"Git remote -v: {remote}")
print(f"Rev parse result: HEAD, HEAD^, master. origin/master {rev_parse}")
print(f"git diff output: {result.stdout}")

Expand Down

0 comments on commit 860d309

Please sign in to comment.