add list of git command

This commit is contained in:
Edi De Candido 2023-04-17 22:49:14 +02:00
parent 434d64f6af
commit a78c4b1a33
1 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,8 @@ FILES := $(notdir $(basename $(SRCS)))
OBJS := $(addprefix $(OBJ_DIR)/,$(addsuffix .o,$(FILES))) OBJS := $(addprefix $(OBJ_DIR)/,$(addsuffix .o,$(FILES)))
all:
all: all:
@ -65,7 +67,7 @@ git_push:
_commit: git_commit git_push _commit: git_commit git_push
git_commit: git_commit:
read -p "Enter git message: " msg; \ @ read -p "Enter git message: " msg; \
git commit -am "$$msg" git commit -am "$$msg"
# remove a file only on git, not local # remove a file only on git, not local