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

  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials.py 36 from webkitpy.common.checkout.scm import Git
62 if not Git.in_working_directory(self.cwd):
64 return (Git.read_git_config(self.git_prefix + "username"),
65 Git.read_git_config(self.git_prefix + "password"))
68 # or directory" (OSError errno 2), which imply that the Git
  /external/smali/
build.gradle 41 def git = org.eclipse.jgit.api.Git.open(file('.'))
42 def head = git.getRepository().getRef("HEAD")
45 if (!git.status().call().clean) {
  /external/webkit/Tools/Scripts/
validate-committer-lists 41 from webkitpy.common.checkout.scm import Git
159 git_log_args = ['git', 'log', '--reverse', '--pretty=format:%ae %at']
248 if not Git.in_working_directory("."):
249 print """\n\nWARNING: validate-committer-lists requires a git checkout.
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm.py 30 # Python module for interacting with an SCM system (like SVN or Git)
87 if Git.in_working_directory(absolute_path):
88 return Git(cwd=absolute_path)
323 # A mixin class that represents common functionality for SVN and Git-SVN.
403 # svn revert -R is not as awesome as git reset --hard.
405 # calls to fail on the bots. We make this mirror git reset --hard
554 log("WARNING: svn merge has been known to take more than 10 minutes to complete. It is recommended you use git for rollouts.")
564 # git-commit and force are not used by SVN.
604 # All git-specific logic should go here.
605 class Git(SCM, SVNRepository)
    [all...]
scm_unittest.py 48 from webkitpy.common.checkout.scm import detect_scm_system, SCM, SVN, Git, CheckoutNeedsUpdate, commit_error_handler, AuthenticationError, AmbiguousCommitError, find_checkout_root, default_scm
94 return _make_diff("git", *args)
97 # Exists to share svn repository creation code between the git and svn tests
119 # svn-apply fails to remove directories in Git, see:
148 # git svn complains if we don't pass --pre-1.5-compatible, not sure why:
149 # Expected FS format '2'; found format '3' at /usr/local/libexec/git-core//git-svn line 1477
156 # Create and checkout a trunk dir to match the standard svn configuration to match git-svn's expectations
257 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...]

Completed in 3658 milliseconds