Searched refs:commit_hash (Results 1 - 6 of 6) sorted by relevance
/third_party/jerryscript/tools/ |
H A D | check-signed-off.sh | 78 commit_hash=`git show -s --format=%h HEAD | head -1` 81 commit_hash=${parent_hashes[1]} 88 actual_signed_off_by_line=`git show -s --format=%B $commit_hash | sed '/^$/d' | tr -d '\015' | tail -n 1` 92 author_name=`git show -s --format=%an $commit_hash` 93 author_email=`git show -s --format=%ae $commit_hash` 98 echo -e "\e[1;33mSigned-off-by message is incorrect. The following line should be at the end of the $commit_hash commit's message: '$required_signed_off_by_line'. \e[0m" 102 echo -e "\e[1;33mWarning! The name and email address of the author of the $commit_hash commit is not checked in tolerant mode! \e[0m" 105 echo -e "\e[1;33mSigned-off-by message is incorrect. The following line should be at the end of the $commit_hash commit's message: '$required_signed_off_by_line'. \e[0m"
|
/third_party/node/deps/v8/tools/release/ |
H A D | merge_to_branch.py | 101 def _create_commit_description(self, commit_hash): 102 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash) 104 description += "Revision: " + commit_hash + "\n\n" 119 for commit_hash in self["full_revision_list"]: 120 msg_pieces.append(self._create_commit_description(commit_hash)) 122 commit_hash = self["full_revision_list"][0] 123 full_description = self._create_commit_description(commit_hash).split("\n") 134 for commit_hash in self["full_revision_list"]: 135 msg = self.GitLog(n=1, git_hash=commit_hash) 156 for commit_hash i [all...] |
H A D | list_deprecated.py | 105 commit_hash = blame['hash'] 130 deprecated.append((index + 1, commit_datetime, commit_hash, content)) 132 for linenumber, commit_datetime, commit_hash, content in deprecated: 133 self.print_details(linenumber, commit_datetime, commit_hash, content) 135 def print_details(self, linenumber, commit_datetime, commit_hash, content): 138 v8_version = f"v{self.extract_version(commit_hash)}".rjust(5) 139 print(f"{file_position} {v8_version} {commit_date} {commit_hash[:8]}" 143 commit_hash, commit_datetime = subprocess.check_output( 147 self.print_details(11, commit_datetime, commit_hash, content="")
|
H A D | roll_merge.py | 118 for commit_hash in self["full_revision_list"]: 119 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash) 123 for commit_hash in self["full_revision_list"]: 124 msg = self.GitLog(n=1, git_hash=commit_hash) 138 for commit_hash in self["full_revision_list"]: 140 % (commit_hash, self["merge_to_branch"])) 141 patch = self.GitGetPatch(commit_hash)
|
/third_party/skia/tools/skqp/ |
H A D | find_commit_with_best_gold_results.py | 97 commit_hash = subprocess.check_output(['git', 'rev-parse', commit_name]).strip() 98 results.append((commit_hash, get_results_for_commit(commit_hash, jobs)))
|
/third_party/python/PCbuild/ |
H A D | get_external.py | 12 def fetch_zip(commit_hash, zip_dir, *, org='python', binary=False, verbose): 14 url = f'https://github.com/{org}/{repo}/archive/{commit_hash}.zip' 21 zip_dir / f'{commit_hash}.zip',
|
Completed in 3 milliseconds