summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdot/local/bin/git-ll-remote3
1 files changed, 2 insertions, 1 deletions
diff --git a/dot/local/bin/git-ll-remote b/dot/local/bin/git-ll-remote
index 666f222..76feada 100755
--- a/dot/local/bin/git-ll-remote
+++ b/dot/local/bin/git-ll-remote
@@ -166,6 +166,7 @@ handle_hash_ref()
166 fi 166 fi
167 more=$(git show -s "$hash" --pretty='%ar:%cn') || exit 167 more=$(git show -s "$hash" --pretty='%ar:%cn') || exit
168 IFS=: read when author <<< "$more" 168 IFS=: read when author <<< "$more"
169 when=${when% ago}
169 subj=$(git show -s "$hash" --pretty='%s') 170 subj=$(git show -s "$hash" --pretty='%s')
170 171
171 author_size=13 172 author_size=13
@@ -186,7 +187,7 @@ handle_hash_ref()
186 esac 187 esac
187 SEEN_HASH="$SEEN_HASH $hash " 188 SEEN_HASH="$SEEN_HASH $hash "
188 189
189 printf "%-42s %17s %-${author_size}s %-$((subj_size + 1))s %10s %s\n" "$hash" "$when" "$author" "$subj" "($VERDICT)" "$ref" 190 printf "%-42s %21s %-${author_size}s %-$((subj_size + 1))s %10s %s\n" "$hash" "$when" "$author" "$subj" "($VERDICT)" "$ref"
190 listed=$((listed + 1)) 191 listed=$((listed + 1))
191 else 192 else
192 skipped=$((skipped + 1)) 193 skipped=$((skipped + 1))