summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7d6d8be88198b0606541f67838ac3e5cac6fa317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 ./...

merge-devel:
	git checkout master
	git pull origin master
	git merge devel
	git push origin master
	git check devel