Searched refs:Git (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials.py36 from webkitpy.common.checkout.scm import Git namespace
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/webkit/Tools/Scripts/
H A Dvalidate-committer-lists41 from webkitpy.common.checkout.scm import Git namespace
248 if not Git.in_working_directory("."):
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm.py30 # 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.
605 class Git(SCM, SVNRepository): class in inherits:SCM, SVNRepository
818 # Git adds an extra @repository_hash to the end of every committer email, remove it:
831 squash = Git.read_git_config('webkit-patch.commit-should-always-squash')
841 # Username is ignored during Git commits.
915 # Git-specific methods:
928 remote_branch_refs = Git
[all...]
H A Dscm_unittest.py48 from webkitpy.common.checkout.scm import detect_scm_system, SCM, SVN, Git, CheckoutNeedsUpdate, commit_error_handler, AuthenticationError, AmbiguousCommitError, find_checkout_root, default_scm namespace
119 # svn-apply fails to remove directories in Git, see:
320 # SVN reports directory changes, Git does not.
333 # SVN reports directory changes, Git does not.
338 self.assertEqual(sorted(self.scm.changed_files_for_revision(4)), sorted(["test_file", "test_file2"])) # Git and SVN return different orders.
364 self._setup_webkittools_scripts_symlink(self.scm) # Git's apply_reverse_diff uses resolve-ChangeLogs
953 # in Git: https://bugs.webkit.org/show_bug.cgi?id=34871
1355 # We do this should_log dance to avoid logging when Git.__init__ runs sysctl on mac to check for 64-bit support.
1356 self.scm = Git(None, executive=executive)

Completed in 699 milliseconds