2024-01-01 19:01:46 -06:00
|
|
|
# git remote add github git@github.com:wit-go/log.git
|
|
|
|
|
2024-10-12 16:32:08 -05:00
|
|
|
all:
|
|
|
|
#@GO111MODULE=off go vet -x
|
|
|
|
GO111MODULE=off go vet
|
|
|
|
|
2024-01-05 20:39:56 -06:00
|
|
|
redomod:
|
|
|
|
rm -f go.*
|
2024-01-14 11:54:13 -06:00
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|
2024-01-05 20:39:56 -06:00
|
|
|
|
2024-11-07 01:23:43 -06:00
|
|
|
goimport:
|
|
|
|
goimports -w *.go
|
|
|
|
|
2024-01-01 19:01:46 -06:00
|
|
|
github:
|
|
|
|
git push origin master
|
|
|
|
git push origin devel
|
|
|
|
git push origin --tags
|
|
|
|
git push github master
|
|
|
|
git push github devel
|
|
|
|
git push github --tags
|
|
|
|
@echo
|
2024-01-01 19:03:17 -06:00
|
|
|
@echo check https://github.com/wit-go/log
|
2024-01-01 19:01:46 -06:00
|
|
|
@echo
|
|
|
|
|
|
|
|
init-github:
|
|
|
|
git push -u github master
|
|
|
|
git push -u github devel
|
|
|
|
git push github --tags
|