HomeSort by relevance Sort by last modified time
    Searched defs:Git (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
__init__.py 5 from .git import Git, AmbiguousCommitError
detection.py 36 from .git import Git
74 if Git.in_working_directory(absolute_path, executive=self._executive):
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
git.py 50 class Git(SCM):
52 # Git doesn't appear to document error codes, but seems to return
56 executable_name = 'git'
74 # The Windows bots seem to through a WindowsError when git isn't installed.
78 # "git rev-parse --show-cdup" would be another way to get to the root
80 if not self._filesystem.isabs(checkout_root): # Sometimes git returns relative paths
100 return self._filesystem.exists(self.absolute_path(self._filesystem.join('.git', 'rebase-apply')))
106 # Could run git clean here too, but that wouldn't match subversion
113 # git status returns non-zero when there are changes, so we use git diff name --name-status HEAD instead
    [all...]
scm_unittest.py 40 from webkitpy.common.checkout.scm.git import Git, AmbiguousCommitError
114 return self._make_diff("git", *args)
142 # git svn complains if we don't pass --pre-1.5-compatible, not sure why:
143 # Expected FS format '2'; found format '3' at /usr/local/libexec/git-core//git-svn line 1477
150 # Create and checkout a trunk dir to match the standard svn configuration to match git-svn's expectations
176 # svn-apply fails to remove directories in Git, see:
316 """Sets up fresh git repository with one commit. Then sets up a second git repo that tracks the first one.""
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 103 self.executive.run_command(['git', 'help'])
106 self.executive.run_command(['git.bat', 'help'])
108 # of development tools, including Python and git. Instead of using a
109 # real git executable, depot_tools indirects via a batch file, called
110 # git.bat. This batch file allows depot_tools to auto-update the real
111 # git executable, which is contained in a subdirectory.
114 # the difference between a real git executable and batch file when we
116 # We hack the git.bat name into the SVN class.
117 _log.debug('Engaging git.bat Windows hack.')
118 from webkitpy.common.checkout.scm.git import Gi
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
validate-committer-lists 43 from webkitpy.common.checkout.scm import Git
164 git_log_args = ['git', 'log', '--reverse', '--pretty=format:%ae %at']
271 if not Git.in_working_directory("."):
272 print """\n\nWARNING: validate-committer-lists requires a git checkout.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer.py 31 from webkitpy.common.checkout.scm.git import Git
45 self.git = Git(cwd=tool.scm().checkout_root, filesystem=tool.filesystem, executive=tool.executive)
54 self.last_commit = self.git.latest_git_commit()
63 new_commits = self.git.git_commits_since(self.last_commit)
98 if not self.git.is_cleanly_tracking_remote_master():
104 self.git.ensure_cleanly_tracking_remote_master()
123 self.git.pull()
145 return self._format_commit_detail(self.git.git_commit_detail(commit, self._commit_detail_format)
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 176 # from subscripts like git cl upload.
286 def Git(self, args="", prefix="", pipe=True, retry_on=None):
287 cmd = lambda: self._side_effect_handler.Command("git", args, prefix, pipe)
320 git_result = self.Git("branch").strip()
325 if self.Git("branch -D %s" % name) is None:
346 # Cancel if this is not a git checkout.
348 self.Die("This is not a git checkout, this script won't work for you.")
357 if self.Git("status -s -uno").strip() != "":
362 git_result = self.Git("status -s -b -uno").strip()
371 if self.Git("svn fetch") is None
    [all...]

Completed in 140 milliseconds