2024-01-03 13:32:47 -06:00
|
|
|
# git remote add github git@github.com:wit-go/gui-debugger.git
|
|
|
|
|
2024-01-18 22:36:35 -06:00
|
|
|
all: redomod
|
2024-01-07 19:17:26 -06:00
|
|
|
@echo a 'gui' debugger using the gui
|
|
|
|
|
2024-01-20 20:24:58 -06:00
|
|
|
goimports:
|
|
|
|
goimports -w *.go
|
|
|
|
|
2024-01-07 19:17:26 -06:00
|
|
|
redomod:
|
|
|
|
rm -f go.*
|
2024-01-18 22:36:35 -06:00
|
|
|
goimports -w *.go
|
2024-01-15 16:55:17 -06:00
|
|
|
GO111MODULE= go mod init
|
|
|
|
GO111MODULE= go mod tidy
|
2024-01-04 12:49:26 -06:00
|
|
|
|
2024-01-03 13:32:47 -06:00
|
|
|
github:
|
|
|
|
git push -u github master
|
|
|
|
git push -u github devel
|
|
|
|
git push github --tags
|