30 lines
643 B
Makefile
30 lines
643 B
Makefile
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:
|
|
git pull
|
|
git add --all
|
|
-git commit -a -s
|
|
git push
|
|
|
|
# should update every go dependancy (?)
|
|
update:
|
|
git pull
|
|
go get -v -t -u ./...
|
|
|
|
# sync repo to the github backup
|
|
# git remote add github git@github.com:wit-go/gui.git
|
|
github:
|
|
git push origin master
|
|
git push origin --tags
|
|
git push github master
|
|
git push github --tags
|
|
|
|
new-github:
|
|
-git remote add github2 git@github.com:wit-go/shell.git
|
|
git branch -M master
|
|
git push -u github2 master
|