Files
archmgr/commands/util/git.py

6 lines
89 B
Python

import subprocess
def init(dirname: str):
subprocess.call("git init", cwd=dirname)