summaryrefslogtreecommitdiff
path: root/builtin/commit-graph.c
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2024-08-20 01:48:26 +0000
committerJunio C Hamano <gitster@pobox.com>2024-08-20 08:28:17 -0700
commit6df4b091597bf1ea8ed674eb2839d70fda4ea4c4 (patch)
tree258586ed7c575428056745025d9f8d0286da0c2f /builtin/commit-graph.c
parentf037e607a875790dcadbba3f7a8fc185e2877792 (diff)
git-prompt: fix uninitialized variable
First use is in the form: local var; ...; var=$var$whatever... If the variable was unset (as bash and others do after "local x"), then it would error if set -u is in effect. Also, many shells inherit the existing value after "local var" without init, but in this case it's unlikely to have a prior value. Now we initialize it. (local var= is enough, but local var="" is the custom in this file) Signed-off-by: Avi Halachmi (:avih) <avihpit@yahoo.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit-graph.c')
0 files changed, 0 insertions, 0 deletions