5 lines
144 B
Python
5 lines
144 B
Python
import subprocess
|
|
git_url = input('Git url to clone > ')
|
|
subprocess.run(["git", "clone", git_url], capture_output=False)
|
|
print('Done cloning!')
|