webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Public Member Functions | |
def | __init__ (self, cwd, patch_directories, kwargs) |
def | in_working_directory (cls, path, executive=None) |
def | find_checkout_root (self, path) |
def | to_object_name (self, filepath) |
def | read_git_config (cls, key, cwd=None, executive=None) |
def | discard_local_commits (self) |
def | local_commits (self) |
def | rebase_in_progress (self) |
def | has_working_directory_changes (self) |
def | discard_working_directory_changes (self) |
def | status_command (self) |
def | add_list (self, paths) |
def | delete_list (self, paths) |
def | exists (self, path) |
def | merge_base (self, git_commit) |
def | modifications_staged_for_commit (self) |
def | untracked_files (self, include_ignored_files=False) |
def | changed_files (self, git_commit=None) |
def | changed_files_for_revision (self, revision) |
def | revisions_changing_file (self, path, limit=5) |
def | conflicted_files (self) |
def | added_files (self) |
def | deleted_files (self) |
def | display_name (self) |
def | svn_revision (self, path) |
def | svn_url (self) |
def | timestamp_of_revision (self, path, revision) |
def | prepend_svn_revision (self, diff) |
def | create_patch (self, git_commit=None, changed_files=None, git_index=False) |
def | git_commit_from_svn_revision (self, svn_revision) |
def | svn_revision_from_git_commit (self, git_commit) |
def | contents_at_revision (self, path, revision) |
def | diff_for_revision (self, revision) |
def | diff_for_file (self, path, log=None) |
def | show_head (self, path) |
def | committer_email_for_revision (self, revision) |
def | apply_reverse_diff (self, revision) |
def | revert_files (self, file_paths) |
def | commit_with_message (self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None) |
def | svn_commit_log (self, svn_revision) |
def | last_svn_commit_log (self) |
def | svn_blame (self, path) |
def | origin_url (self) |
def | init_submodules (self) |
def | submodules_status (self) |
def | deinit_submodules (self) |
def | delete_branch (self, branch_name) |
def | remote_merge_base (self) |
def | remote_branch_ref (self) |
def | cherrypick_merge (self, commit) |
def | commit_locally_with_message (self, message) |
def | push_local_commits_to_server (self, username=None, password=None) |
def | commit_ids_from_commitish_arguments (self, args) |
def | commit_message_for_local_commit (self, commit_id) |
def | files_changed_summary_for_commit (self, commit_id) |
Public Member Functions inherited from webkitpy.common.checkout.scm.scm.SCM | |
def | __init__ (self, cwd, executive=None, filesystem=None) |
def | run (self, args, cwd=None, input=None, error_handler=None, return_exit_code=False, return_stderr=True, decode_output=True) |
def | absolute_path (self, repository_relative_path) |
def | run_status_and_extract_filenames (self, status_command, status_regexp) |
def | strip_r_from_svn_revision (self, svn_revision) |
def | svn_revision_from_commit_text (self, commit_text) |
def | in_working_directory (cls, path, executive=None) |
def | find_checkout_root (self, path) |
def | status_command (self) |
def | add (self, path) |
def | add_list (self, paths) |
def | delete (self, path) |
def | delete_list (self, paths) |
def | exists (self, path) |
def | changed_files (self, git_commit=None) |
def | changed_files_for_revision (self, revision) |
def | revisions_changing_file (self, path, limit=5) |
def | added_files (self) |
def | conflicted_files (self) |
def | display_name (self) |
def | head_svn_revision (self) |
def | svn_revision (self, path) |
def | timestamp_of_revision (self, path, revision) |
def | create_patch (self, git_commit=None, changed_files=None) |
def | committer_email_for_revision (self, revision) |
def | contents_at_revision (self, path, revision) |
def | diff_for_revision (self, revision) |
def | diff_for_file (self, path, log=None) |
def | show_head (self, path) |
def | apply_reverse_diff (self, revision) |
def | revert_files (self, file_paths) |
def | commit_with_message (self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None) |
def | svn_commit_log (self, svn_revision) |
def | last_svn_commit_log (self) |
def | svn_blame (self, path) |
def | has_working_directory_changes (self) |
def | untracked_files (self, include_ignored_files=False) |
def | discard_untracked_files (self, discard_ignored_files=False) |
def | discard_working_directory_changes (self) |
def | local_commits (self) |
def | has_local_commits (self) |
def | discard_local_commits (self) |
def | remote_merge_base (self) |
def | commit_locally_with_message (self, message) |
def | local_changes_exist (self) |
def | discard_local_changes (self) |
Public Member Functions inherited from webkitpy.common.checkout.scm.svn.SVNRepository | |
def | has_authorization_for_realm (self, realm, home_directory=os.getenv("HOME")) |
Static Public Member Functions | |
def | commit_success_regexp () |
def | supports_local_commits () |
Static Public Member Functions inherited from webkitpy.common.checkout.scm.scm.SCM | |
def | commit_success_regexp () |
def | supports_local_commits () |
Static Public Attributes | |
int | ERROR_FILE_IS_MISSING = 128 |
string | executable_name = 'git' |
Static Public Attributes inherited from webkitpy.common.checkout.scm.svn.SVNRepository | |
svn_server_host = svn_server_host | |
svn_server_realm = svn_server_realm | |
Additional Inherited Members | |
Public Attributes inherited from webkitpy.common.checkout.scm.scm.SCM | |
cwd | |
checkout_root | |
def webkitpy.common.checkout.scm.git.Git.__init__ | ( | self, | |
cwd, | |||
patch_directories, | |||
kwargs | |||
) |
def webkitpy.common.checkout.scm.git.Git.add_list | ( | self, | |
paths | |||
) |
def webkitpy.common.checkout.scm.git.Git.added_files | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.apply_reverse_diff | ( | self, | |
revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.changed_files | ( | self, | |
git_commit = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.changed_files_for_revision | ( | self, | |
revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.cherrypick_merge | ( | self, | |
commit | |||
) |
def webkitpy.common.checkout.scm.git.Git.commit_ids_from_commitish_arguments | ( | self, | |
args | |||
) |
def webkitpy.common.checkout.scm.git.Git.commit_locally_with_message | ( | self, | |
message | |||
) |
def webkitpy.common.checkout.scm.git.Git.commit_message_for_local_commit | ( | self, | |
commit_id | |||
) |
|
static |
def webkitpy.common.checkout.scm.git.Git.commit_with_message | ( | self, | |
message, | |||
username = None , |
|||
password = None , |
|||
git_commit = None , |
|||
force_squash = False , |
|||
changed_files = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.committer_email_for_revision | ( | self, | |
revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.conflicted_files | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.contents_at_revision | ( | self, | |
path, | |||
revision | |||
) |
Returns a byte array (str()) containing the contents of path @ revision in the repository.
def webkitpy.common.checkout.scm.git.Git.create_patch | ( | self, | |
git_commit = None , |
|||
changed_files = None , |
|||
git_index = False |
|||
) |
Returns a byte array (str()) representing the patch file. Patch files are effectively binary since they may contain files of multiple different encodings.
def webkitpy.common.checkout.scm.git.Git.deinit_submodules | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.delete_branch | ( | self, | |
branch_name | |||
) |
def webkitpy.common.checkout.scm.git.Git.delete_list | ( | self, | |
paths | |||
) |
def webkitpy.common.checkout.scm.git.Git.deleted_files | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.diff_for_file | ( | self, | |
path, | |||
log = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.diff_for_revision | ( | self, | |
revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.discard_local_commits | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.discard_working_directory_changes | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.display_name | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.exists | ( | self, | |
path | |||
) |
def webkitpy.common.checkout.scm.git.Git.files_changed_summary_for_commit | ( | self, | |
commit_id | |||
) |
def webkitpy.common.checkout.scm.git.Git.find_checkout_root | ( | self, | |
path | |||
) |
def webkitpy.common.checkout.scm.git.Git.git_commit_from_svn_revision | ( | self, | |
svn_revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.has_working_directory_changes | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.in_working_directory | ( | cls, | |
path, | |||
executive = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.init_submodules | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.last_svn_commit_log | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.local_commits | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.merge_base | ( | self, | |
git_commit | |||
) |
def webkitpy.common.checkout.scm.git.Git.modifications_staged_for_commit | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.origin_url | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.prepend_svn_revision | ( | self, | |
diff | |||
) |
def webkitpy.common.checkout.scm.git.Git.push_local_commits_to_server | ( | self, | |
username = None , |
|||
password = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.read_git_config | ( | cls, | |
key, | |||
cwd = None , |
|||
executive = None |
|||
) |
def webkitpy.common.checkout.scm.git.Git.rebase_in_progress | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.remote_branch_ref | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.remote_merge_base | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.revert_files | ( | self, | |
file_paths | |||
) |
def webkitpy.common.checkout.scm.git.Git.revisions_changing_file | ( | self, | |
path, | |||
limit = 5 |
|||
) |
def webkitpy.common.checkout.scm.git.Git.show_head | ( | self, | |
path | |||
) |
def webkitpy.common.checkout.scm.git.Git.status_command | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.submodules_status | ( | self | ) |
|
static |
def webkitpy.common.checkout.scm.git.Git.svn_blame | ( | self, | |
path | |||
) |
def webkitpy.common.checkout.scm.git.Git.svn_commit_log | ( | self, | |
svn_revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.svn_revision | ( | self, | |
path | |||
) |
def webkitpy.common.checkout.scm.git.Git.svn_revision_from_git_commit | ( | self, | |
git_commit | |||
) |
def webkitpy.common.checkout.scm.git.Git.svn_url | ( | self | ) |
def webkitpy.common.checkout.scm.git.Git.timestamp_of_revision | ( | self, | |
path, | |||
revision | |||
) |
def webkitpy.common.checkout.scm.git.Git.to_object_name | ( | self, | |
filepath | |||
) |
def webkitpy.common.checkout.scm.git.Git.untracked_files | ( | self, | |
include_ignored_files = False |
|||
) |
|
static |
|
static |