Skip to content

Commit

Permalink
Create clone.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbensley authored Nov 25, 2024
1 parent f394c0c commit 0235f43
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions clone.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import subprocess
ret = subprocess.run(
["git", "clone", "[email protected]:DFZ-Name-and-Shame/dnas_stats.git"],
capture_output=True,
)
print(ret.returncode)
print(ret.stdout.decode())
print(ret.stderr.decode())

0 comments on commit 0235f43

Please sign in to comment.