From 7f3220abb7292346b3b5c80dff264ccfb60d554f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Toki=C4=87?= Date: Mon, 4 Feb 2019 12:40:11 +0100 Subject: [PATCH] Remove unnecessary Git alias Git is able to find binary by the prefixed "git" name. --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 19c7ee0..60116db 100644 --- a/Makefile +++ b/Makefile @@ -17,14 +17,12 @@ help: install: install -d -m 0755 $(PREFIX)/bin install -m 0755 git-quick-stats $(PREFIX)/bin/git-quick-stats - git config --global alias.quick-stats '! $(PREFIX)/bin/git-quick-stats' $(MAKE) man @$(TASK_DONE) uninstall: rm -f $(PREFIX)/bin/git-quick-stats rm -f $(PREFIX)/share/man/man1/git-quick-stats.1 - git config --global --unset alias.quick-stats @$(TASK_DONE) reinstall: