feat(push): add push without ssl to makefile

This commit is contained in:
vbuglov 2024-03-05 11:46:48 +03:00
parent bf2f060b94
commit 81c5c1f87f
2 changed files with 2 additions and 2 deletions

View File

@ -44,4 +44,4 @@ ifeq ($(commit),)
$(error mn is not set) $(error mn is not set)
endif endif
make prehook make prehook
git add . && git commit -m "feat($(commit)):" && git push git add . && git commit -m "feat($(commit)):" && GIT_SSL_NO_VERIFY=true git push

View File

@ -45,4 +45,4 @@ ifeq ($(commit),)
$(error mn is not set) $(error mn is not set)
endif endif
make prehook make prehook
git add . && git commit -m "feat($(commit)):" && git push git add . && git commit -m "feat($(commit)):" && GIT_SSL_NO_VERIFY=true git push