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