Skip to content

Commit

Permalink
add gitconfig to Makefile for codespace
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Baker <[email protected]>
  • Loading branch information
rbtr committed Sep 8, 2022
1 parent 5750e0d commit 6eb7c59
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6eb7c59

Please sign in to comment.