Lines Matching refs:commit
18 clang-format on the changes in current files or a specific commit.
35 usage = 'git clang-format [OPTIONS] [<commit>] [--] [<file>...]'
39 and <commit>, which defaults to HEAD. Changes are only applied to the working
44 clangFormat.commit
86 p.add_argument('--commit',
87 default=config.get('clangformat.commit', 'HEAD'),
88 help='default commit to use if none is specified'),
108 # to use some heuristics to determine whether or not <commit> was present.
110 p.add_argument('args', nargs='*', metavar='<commit>',
119 commit, files = interpret_args(opts.args, dash_dash, opts.commit)
120 changed_lines = compute_diff_and_extract_lines(commit, files)
180 """Interpret `args` as "[commit] [--] [files...]" and return (commit, files).
186 left (if present) is taken as commit. Otherwise, the first argument is
187 checked if it is a commit or a file. If commit is not given,
191 commit = default_commit
193 die('at most one commit allowed; %d given' % len(args))
195 commit = args[0]
196 object_type = get_object_type(commit)
197 if object_type not in ('commit', 'tag'):
199 die("'%s' is not a commit" % commit)
201 die("'%s' is a %s, but a commit was expected" % (commit, object_type))
205 commit = args[0]
208 commit = default_commit
211 commit = default_commit
213 return commit, files
218 # If `value` is ambiguous (neither a commit nor a file), the following
224 if object_type in ('commit', 'tag'):
226 die('`%s` is a %s, but a commit or filename was expected' %
241 def compute_diff_and_extract_lines(commit, files):
243 diff_process = compute_diff(commit, files)
253 def compute_diff(commit, files):
254 """Return a subprocess object producing the diff from `commit`.
257 differences between the working directory and `commit`, filtered on `files`
259 cmd = ['git', 'diff-index', '-p', '-U0', commit, '--']
433 print >>sys.stderr, 'Please commit, stage, or stash them first.'