blob: 60cc8deeb68efb8698bd66cfa25a233fc9d41d17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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 ./...
|