Lines Matching +full:rev +full:- +full:parse
2 # reserved. Use of this source code is governed by a BSD-style license that
24 cmd = "%s merge-base --is-ancestor %s %s" % (git_exe, commit1, commit2)
31 cmd = "%s rev-parse %s" % (git_exe, branch)
42 cmd = "%s rev-parse --abbrev-ref %s" % (git_exe, branch)
52 cmd = "%s log -n 1 --pretty=%%d %s" % (git_exe, branch)
55 return result['out'].strip()[1:-1].split(', ')[-1]
61 cmd = "%s config --get remote.origin.url" % git_exe
70 cmd = "%s rev-list --count %s" % (git_exe, branch)
80 cmd = "%s diff --name-only" % git_exe
82 cmd = "%s diff --name-only --cached" % git_exe
84 cmd = "%s diff-tree --no-commit-id --name-only -r %s" % (git_exe, hash)
105 # Remove the "+ " or "- " prefix.
141 config = '-p0 --ignore-whitespace'
144 cmd = '%s apply %s --numstat' % (git_exe, config)
149 cmd = '%s apply %s --reverse --check' % (git_exe, config)
156 cmd = '%s apply %s --check' % (git_exe, config)