On Fri, Aug 14, 2020 at 04:30:47PM -0400, Leo Famulari wrote: > +z40=0000000000000000000000000000000000000000 > + > +# If deleting a branch, there are no commits to check. > +if [ "$local_sha" = $z40 ] > +then > + true > +else Is there a reason this `if' is written like that? I would use != and get rid of the do-nothing branch entirely. Regards, Jakub Kądziołka