From a78c4b1a333b0ec3dfd54bb0db0088f7a31ffbc2 Mon Sep 17 00:00:00 2001 From: Edi De Candido Date: Mon, 17 Apr 2023 22:49:14 +0200 Subject: [PATCH] add list of git command --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8303ef9..f6f1e39 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,8 @@ FILES := $(notdir $(basename $(SRCS))) OBJS := $(addprefix $(OBJ_DIR)/,$(addsuffix .o,$(FILES))) +all: + all: @@ -65,7 +67,7 @@ git_push: _commit: git_commit git_push git_commit: - read -p "Enter git message: " msg; \ + @ read -p "Enter git message: " msg; \ git commit -am "$$msg" # remove a file only on git, not local