summaryrefslogtreecommitdiff
path: root/git/repo/fun.py
blob: 7529897d1ca9306786c768be7dfde96f2201cffc (plain)
1
2
3
4
5
6
7
8
9
10
"""Package with general repository related functions"""
import os
from gitdb.util import is_git_dir

__all__ = ('is_git_dir', 'touch')

def touch(filename):
	fp = open(filename, "a")
	fp.close()