2019-06-15 21:14:09 -05:00
|
|
|
all:
|
|
|
|
# 'gaper' is a simple and smart golang tool that just rebuilds every time you change a file
|
|
|
|
# go get -u github.com/maxcnunes/gaper
|
|
|
|
# gaper
|
|
|
|
|
|
|
|
# simple sortcut to push all git changes
|
|
|
|
push:
|
2019-06-16 09:08:38 -05:00
|
|
|
git pull
|
2019-06-15 21:14:09 -05:00
|
|
|
git add --all
|
|
|
|
-git commit -a -s
|
|
|
|
git push
|
|
|
|
|
|
|
|
# should update every go dependancy (?)
|
|
|
|
update:
|
|
|
|
git pull
|
|
|
|
go get -v -t -u ./...
|