git.mkを追加
[exopen-mode.git] / git.mk
1 GIT := git
2
3 REPO := www.j8takagi.net:/home/git
4
5 .PHONY: gitorigin gitpush gitorigin-clean
6
7 gitpush:
8         $(GIT) push --set-upstream origin master
9
10 gitorigin:
11         $(GIT) remote add origin $(REPO)/$(notdir $(CURDIR)).git
12
13 gitorigin-clean:
14         $(GIT) remote remove origin