Lines Matching refs:since
38 We don't reformat generated files, since the result might be different
61 def get_src_files(since: Optional[str]) -> List[str]:
65 The optional argument since is a commit, indicating to only list files
66 that have changed since that commit. Without this argument, list all
78 if since:
79 # get all files changed in commits since the starting point
80 cmd = ["git", "log", since + "..HEAD", "--name-only", "--pretty=", "--"] + src_files
192 parser.add_argument('-s', '--since', metavar='COMMIT', const='development', nargs='?',
193 help=('only check files modified since the specified commit'
194 ' (e.g. --since=HEAD~3 or --since=development). If no'
208 covered = frozenset(get_src_files(args.since))