fix(user:git-bk-find-file):Display commit hash correctly
[BK-2020-03.git] / user / git-bk-find-file
index f4ef58eb64e89f528c55d573009102517ad9a845..b1feb0d10662ef124b58b4f171ceeefebb964564 100755 (executable)
@@ -3,7 +3,7 @@
 # Usage: git-bk-find-file [string grep pattern]
 # Example git-bk-find-file '.txt$'
 # Ref/Attrib: albfan "How can I search Git branches for a file or directory?" https://stackoverflow.com/a/16868704/10850071
-# Version: 0.1.0
+# Version: 0.2.0
 # Depends: GNU bash v5.1.16, GNU parallel 20210822
 
 yell() { echo "$0: $*" >&2; } # print script path and all args to stderr
@@ -34,8 +34,8 @@ display_commit() {
         # Get commit timestamp
         time="$(git -c log.showSignature=false show -s --format=%cI "$commit")";
 
-        # Get last 8 chars of commit
-        short_commit="${commit:(-8)}";
+        # Get first 8 chars of commit
+        short_commit="${commit:0:8}";
 
         # Output results
         while read -r line; do