Skip to content

Commit 514a529

Browse files
foolipgitster
authored andcommitted
completion: use tabs for indentation
CodingGuidlines confidently declares "We use tabs for indentation." It would be a shame if it were caught lying. Signed-off-by: Philip Jägenstedt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 176158c commit 514a529

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

contrib/completion/git-completion.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ __git_ps1 ()
286286
fi
287287
fi
288288
if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
289-
git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
289+
git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
290290
fi
291291

292292
if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ]; then
293-
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
294-
u="%"
295-
fi
293+
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
294+
u="%"
295+
fi
296296
fi
297297

298298
if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then

0 commit comments

Comments
 (0)