6 lines
89 B
Python
6 lines
89 B
Python
import subprocess
|
|
|
|
|
|
def init(dirname: str):
|
|
subprocess.call("git init", cwd=dirname)
|