tzk/git.py
Soren I. Bjornstad af147196e2 fully replicate the commit.sh script as is
In fact, this script is missing some things we might like it to have
(e.g., making sure we're really in the right directory).
2021-08-25 14:48:07 -05:00

6 lines
122 B
Python

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