Lines Matching full:git

21     """Create a command to perform a 'git log'
25 git_dir: Path to git repositiory (None to use default)
32 cmd = ['git']
34 cmd += ['--git-dir', git_dir]
77 pipe = ['git', 'name-rev', commit_hash]
89 'git name-rev' returns a plain branch name, with no ! or ^ modifiers.
92 git_dir: Git directory containing repo
118 git_dir: Git directory containing repo
127 remote = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
129 merge = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
149 git_dir: Directory containing git repo
165 git_dir: Directory containing git repo
183 git_dir: Directory containing git repo
214 pipe = ['git']
216 pipe.extend(['--git-dir', git_dir])
226 raise OSError('git checkout (%s): %s' % (pipe, result.stderr))
234 pipe = ['git', 'clone', git_dir, '.']
238 raise OSError('git clone: %s' % result.stderr)
246 pipe = ['git']
248 pipe.extend(['--git-dir', git_dir])
254 raise OSError('git fetch: %s' % result.stderr)
260 git format-patch.
271 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
355 Git command that was/would be run
373 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
377 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
382 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \
386 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \
395 git_config_to = command.Output('git', 'config', 'sendemail.to',
402 "git config sendemail.to u-boot@lists.denx.de")
409 cmd = ['git', 'send-email', '--annotate']
434 TODO: Why not just use git's own alias feature?
520 """Return name of top-level directory for this git repo.
523 Full path to git top-level directory
531 return command.OutputOneLine('git', 'rev-parse', '--show-toplevel')
534 """Gets the name of the git alias file.
537 Filename of git alias file, or None if none
539 fname = command.OutputOneLine('git', 'config', 'sendemail.aliasesfile',
551 uname = command.OutputOneLine('git', 'config', '--global', 'user.name')
560 uemail = command.OutputOneLine('git', 'config', '--global', 'user.email')
564 """Gets the format.subjectprefix from local .git/config file.
567 Subject prefix found in local .git/config file, or None if none
569 sub_prefix = command.OutputOneLine('git', 'config', 'format.subjectprefix',
575 """Set up git utils, by reading the alias files."""
576 # Check for a git alias file also
592 return command.OutputOneLine('git', 'show', '-s', '--pretty=format:%H')