From b9bf5c6aa4c63f8e465aaf3357f25015dc11c2da Mon Sep 17 00:00:00 2001 From: Evan Baker Date: Mon, 29 Aug 2022 19:50:13 +0000 Subject: [PATCH] add gitconfig to Makefile for codespace Signed-off-by: Evan Baker --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7ed48a089c..a5cc6fb947 100644 --- a/Makefile +++ b/Makefile @@ -680,7 +680,14 @@ $(REPO_ROOT)/.git/hooks/pre-push: install-hooks: $(REPO_ROOT)/.git/hooks/pre-push ## installs git hooks -setup: tools install-hooks workspace ## performs common required repo setup +gitconfig: ## configure the local git repository + @git config commit.gpgsign true + @git config pull.rebase true + @git config fetch.prune true + @git config core.fsmonitor true + @git config core.untrackedcache true + +setup: tools install-hooks gitconfig ## performs common required repo setup ##@ Tools