blob: 604d5bc0caaa13b2ca79cc8481e91e548b45d5ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""Package with general repository related functions"""
import os
from git.util import is_git_dir
__all__ = ('is_git_dir', 'touch')
def touch(filename):
fp = open(filename, "a")
fp.close()
|