From b0f52854e008d4e7ce3e6643c0a3dec0501555f7 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Tue, 31 Jan 2023 16:59:13 +0100 Subject: [PATCH] Fix weird typo in git ignore command --- bin/git-ignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-ignore b/bin/git-ignore index 05631e7..7cac42b 100755 --- a/bin/git-ignore +++ b/bin/git-ignore @@ -2,7 +2,7 @@ if [ -z "$@" ] then - !$(git config --get core.editor) $(git rev-parse --show-toplevel)/.git/info/exclude + $(git config --get core.editor) $(git rev-parse --show-toplevel)/.git/info/exclude else ls -d "$@" >> "$(git rev-parse --show-toplevel)/.git/info/exclude" fi