Skip to content

Commit

Permalink
chore: add git Makefile commands
Browse files Browse the repository at this point in the history
  • Loading branch information
shengchenyang committed Jun 21, 2024
1 parent 44eb982 commit 6304b77
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
@@ -1,4 +1,4 @@
.PHONY: start clean build install build_dist test release pytest check
.PHONY: start clean build install build_dist test release pytest git check

refresh: clean build install

Expand Down Expand Up @@ -66,6 +66,13 @@ pytest:
check:
pre-commit run --all-files

git:
git config --global core.eol lf
git config --global core.autocrlf input
git config --global core.safecrlf true
git config --global http.proxy http://127.0.0.1:7897
git config --global https.proxy http://127.0.0.1:7897

path = $(subst /,$(strip $(PATHSEP)),$1)

clean:
Expand Down

0 comments on commit 6304b77

Please sign in to comment.