mirror of https://github.com/zulip/zulip.git
25 lines
773 B
Python
25 lines
773 B
Python
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import subprocess
|
|
|
|
def list_files(targets=[], modified_only=False):
|
|
"""
|
|
List files tracked by git.
|
|
Returns a list of files which are either in targets or in directories in targets.
|
|
If targets is [], list of all tracked files in current directory is returned.
|
|
|
|
Other arguments:
|
|
modified_only - Only include files which have been modified.
|
|
"""
|
|
cmdline = ['git', 'ls-files'] + targets
|
|
if modified_only:
|
|
cmdline.append('-m')
|
|
|
|
files_gen = (x.strip() for x in subprocess.check_output(cmdline, universal_newlines=True).split('\n'))
|
|
# throw away empty lines and non-files (like symlinks)
|
|
files = list(filter(os.path.isfile, files_gen))
|
|
|
|
return files
|