Hi Sven, On Sun, 20 Jan 2019, Sven van Haastregt wrote: > Until now, `git submodule summary` was always emitting 7-character > SHA-1s that have a higher chance of being ambiguous for larger > repositories. Use `git rev-parse --short` instead, which will > determine suitable short SHA-1 lengths. Good point. Just one suggestion: > diff --git a/git-submodule.sh b/git-submodule.sh > index 5e608f8bad..a422b0728d 100755 > --- a/git-submodule.sh > +++ b/git-submodule.sh > @@ -850,8 +850,8 @@ cmd_summary() { > ;; > esac > > - sha1_abbr_src=$(echo $sha1_src | cut -c1-7) > - sha1_abbr_dst=$(echo $sha1_dst | cut -c1-7) > + sha1_abbr_src=$(GIT_DIR="$name/.git" git rev-parse --short $sha1_src) How about `git -C "$name" rev-parse --short`? That would less likely run over 80 columns/line, either. Ciao, Johannes > + sha1_abbr_dst=$(GIT_DIR="$name/.git" git rev-parse --short $sha1_dst) > if test $status = T > then > blob="$(gettext "blob")" > -- > 2.20.1.dirty > >