tzk/git.py

6 lines
122 B
Python
Raw Normal View History

import subprocess
from typing import Sequence
def exec(*args: Sequence[str]):
return subprocess.call(["git", *args])