Slide 58
Slide 58 text
.NOTPARALLEL:
all: .git-config
.git-config:
@echo "this will be executed only once, or whenever you remove the file"
git-config --global user.name "Gabriel Mazetto"
git-config --global user.email "gabriel@gitlab.com"
# make sure clean is not matched to an existing file on disk
.PHONY: clean
clean:
rm .git-config