Searched refs:remote_sha (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/llvm/utils/git/ |
D | pre-push.py | 141 def handle_push(args, local_ref, local_sha, remote_ref, remote_sha): argument 145 % (local_ref, local_sha, remote_ref, remote_sha, args.remote, 154 if remote_sha == z40: 161 range='%s..%s' % (remote_sha, local_sha) 163 if "commit" not in git('cat-file','-t', remote_sha, ignore_errors=True): 220 local_ref, local_sha, remote_ref, remote_sha = line.split() variable 221 handle_push(args, local_ref, local_sha, remote_ref, remote_sha)
|
/external/toolchain-utils/toolchain_utils_githooks/ |
D | pre-push.real | 14 while IFS=' ' read local_ref local_sha remote_ref remote_sha; do 16 if [[ "$remote_sha" == $z40 ]]; then 21 range="$remote_sha..$local_sha"
|