File: git-crrev-parse

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (59 lines) | stat: -rwxr-xr-x 2,013 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.


# This git extension converts a chromium commit number to its git commit hash.
# It accepts the following input formats:
#
#   $ git crrev-parse Cr-Commit-Position: refs/heads/main@{#311769}
#   $ git crrev-parse '    Cr-Commit-Position: refs/heads/main@{#311769}'
#   $ git crrev-parse 'Cr-Commit-Position: refs/heads/main@{#311769}'
#   $ git crrev-parse refs/heads/main@{#311769}
#
# It also works for branches (assuming you have branches in your local
# checkout):
#
#   $ git crrev-parse refs/branch-heads/2278@{#2}
#
# If you don't specify a branch, refs/heads/main is assumed:
#
#   $ git crrev-parse @{#311769}
#   $ git crrev-parse 311769

# Developer note: this script makes heavy use of prefix/suffix/pattern
# substitution for bash variables.  Refer to the "Parameter Expansion"
# section of the man page for bash.

while [ -n "$1" ]; do
  if [[ "$1" = "Cr-Commit-Position:" ]] && [[ "$2" =~ .*@\{#[0-9][0-9]*\} ]]; then
    commit_pos="$2"
    shift
  else
    commit_pos="${1#*Cr-Commit-Position: }"
  fi
  ref="${commit_pos%@\{#*\}}"
  if [ "$ref" = "$commit_pos" -o -z "$ref" ]; then
    ref="refs/heads/main"
  fi
  remote_ref="${ref/refs\/heads/refs\/remotes\/origin}"
  remote_ref="${remote_ref/refs\/branch-heads/refs\/remotes\/branch-heads}"
  remote_ref="${remote_ref//\\}"
  num="${commit_pos#*@\{\#}"
  num="${num%\}}"
  if [ -z "$ref" -o -z "$num" ]; then
    git rev-parse "$1"
  else
    # When the ref is not specified on the command-line, accept either
    # Cr-refs/heads/master@{#$NUM} or refs/heads/main@{#$NUM}.
    if [[ "$ref" = "refs/heads/main" ]]; then
      grep_str="^Cr-Commit-Position: refs/heads/(master|main)@\\{#$num\\}"
    else
      grep_str="^Cr-Commit-Position: $ref@\\{#$num\\}"
    fi
    git rev-list -n 1 --extended-regexp --grep="$grep_str" "$remote_ref"
  fi

  shift
done