git-crrev-parse 1.69 KB
Newer Older
1 2 3 4 5 6 7 8
#!/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:
9
#
10 11 12 13
#   $ git crrev-parse Cr-Commit-Position: refs/heads/master@{#311769}
#   $ git crrev-parse '    Cr-Commit-Position: refs/heads/master@{#311769}'
#   $ git crrev-parse 'Cr-Commit-Position: refs/heads/master@{#311769}'
#   $ git crrev-parse refs/heads/master@{#311769}
14
#
15 16
# It also works for branches (assuming you have branches in your local
# checkout):
17
#
18
#   $ git crrev-parse refs/branch-heads/2278@{#2}
19
#
20
# If you don't specify a branch, refs/heads/master is assumed:
21
#
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#   $ 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/master"
  fi
  remote_ref="${ref/refs\/heads/refs\/remotes\/origin}"
  remote_ref="${remote_ref/refs\/branch-heads/refs\/remotes\/branch-heads}"
42
  remote_ref="${remote_ref//\\}"
43 44 45 46 47
  num="${commit_pos#*@\{\#}"
  num="${num%\}}"
  if [ -z "$ref" -o -z "$num" ]; then
    git rev-parse "$1"
  else
48
    grep_str="^Cr-Commit-Position: $ref@{#$num}"
49 50 51 52 53
    git rev-list -n 1 --grep="$grep_str" "$remote_ref"
  fi

  shift
done