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 6 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 53 class Git(SCM, SVNRepository):
55 # Git doesn't appear to document error codes, but seems to return
59 executable_name = 'git'
94 _log.warning("This machine is 64-bit, but the git binary (%s) does not support 64-bit.\nInstall a 64-bit git for better performance, see:\n%s\n" % (git_path, webkit_dev_thread_url))
109 # The Windows bots seem to through a WindowsError when git isn't installed.
113 # "git rev-parse --show-cdup" would be another way to get to the root
115 if not self._filesystem.isabs(checkout_root): # Sometimes git returns relative paths
145 return self._filesystem.exists(self.absolute_path(self._filesystem.join('.git', 'rebase-apply')))
151 # Could run git clean here too, but that wouldn't match subversio
    [all...]
scm_unittest.py 53 from .git import Git, AmbiguousCommitError
123 return _make_diff("git", *args)
126 # Exists to share svn repository creation code between the git and svn tests
152 # svn-apply fails to remove directories in Git, see:
198 # git svn complains if we don't pass --pre-1.5-compatible, not sure why:
199 # Expected FS format '2'; found format '3' at /usr/local/libexec/git-core//git-svn line 1477
206 # Create and checkout a trunk dir to match the standard svn configuration to match git-svn's expectations
258 git_failure_message="Merge conflict during commit: Your file or directory 'WebCore/ChangeLog' is probably out-of-date: resource out of date; try updating at /usr/local/libexec/git-core//git-svn line 469
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 106 self.executive.run_command(['git', 'help'])
109 self.executive.run_command(['git.bat', 'help'])
111 # of development tools, including Python and git. Instead of using a
112 # real git executable, depot_tools indirects via a batch file, called
113 # git.bat. This batch file allows depot_tools to auto-update the real
114 # git executable, which is contained in a subdirectory.
117 # the difference between a real git executable and batch file when we
119 # We hack the git.bat name into the SVN class.
120 _log.debug('Engaging git.bat Windows hack.')
121 from webkitpy.common.checkout.scm.git import Gi
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
credentials.py 37 from webkitpy.common.checkout.scm import Git
64 if not Git.in_working_directory(self.cwd):
66 return (Git.read_git_config(self.git_prefix + "username"),
67 Git.read_git_config(self.git_prefix + "password"))
70 # or directory" (OSError errno 2), which imply that the Git
  /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...]

Completed in 487 milliseconds