Lines Matching full:git

22     """Create a command to perform a 'git log'
26 git_dir: Path to git repositiory (None to use default)
33 cmd = ['git']
35 cmd += ['--git-dir', git_dir]
78 pipe = ['git', 'name-rev', commit_hash]
90 'git name-rev' returns a plain branch name, with no ! or ^ modifiers.
93 git_dir: Git directory containing repo
119 git_dir: Git directory containing repo
128 remote = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
130 merge = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
150 git_dir: Directory containing git repo
166 git_dir: Directory containing git repo
184 git_dir: Directory containing git repo
215 pipe = ['git']
217 pipe.extend(['--git-dir', git_dir])
227 raise OSError('git checkout (%s): %s' % (pipe, result.stderr))
235 pipe = ['git', 'clone', git_dir, '.']
239 raise OSError('git clone: %s' % result.stderr)
247 pipe = ['git']
249 pipe.extend(['--git-dir', git_dir])
255 raise OSError('git fetch: %s' % result.stderr)
261 git format-patch.
272 cmd = ['git', 'format-patch', '-M', '--signoff']
348 in_reply_to: If set we'll pass this to git as --in-reply-to.
350 thread: True to add --thread to git send-email (make
354 Git command that was/would be run
372 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
376 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
381 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \
385 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
394 git_config_to = command.Output('git', 'config', 'sendemail.to',
401 "git config sendemail.to u-boot@lists.denx.de")
408 cmd = ['git', 'send-email', '--annotate']
431 TODO: Why not just use git's own alias feature?
517 """Return name of top-level directory for this git repo.
520 Full path to git top-level directory
528 return command.OutputOneLine('git', 'rev-parse', '--show-toplevel')
531 """Gets the name of the git alias file.
534 Filename of git alias file, or None if none
536 fname = command.OutputOneLine('git', 'config', 'sendemail.aliasesfile',
548 uname = command.OutputOneLine('git', 'config', '--global', 'user.name')
557 uemail = command.OutputOneLine('git', 'config', '--global', 'user.email')
561 """Gets the format.subjectprefix from local .git/config file.
564 Subject prefix found in local .git/config file, or None if none
566 sub_prefix = command.OutputOneLine('git', 'config', 'format.subjectprefix',
572 """Set up git utils, by reading the alias files."""
573 # Check for a git alias file also
589 return command.OutputOneLine('git', 'show', '-s', '--pretty=format:%H')