gitディレクトリーを削除。Makefileでの動作は不向きなため
authorj8takagi <j8takagi@nifty.com>
Wed, 24 Jul 2013 13:10:22 +0000 (22:10 +0900)
committerj8takagi <j8takagi@nifty.com>
Wed, 24 Jul 2013 13:10:22 +0000 (22:10 +0900)
git/Makefile [deleted file]
git/gitremote.mk [deleted file]

diff --git a/git/Makefile b/git/Makefile
deleted file mode 100644 (file)
index 5d43e03..0000000
+++ /dev/null
@@ -1 +0,0 @@
--include gitremote.mk
diff --git a/git/gitremote.mk b/git/gitremote.mk
deleted file mode 100644 (file)
index 30c16aa..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-CD := cd
-ECHO := echo
-GIT := git
-LS := ls
-MKDIR := mkdir
-SSH := ssh
-
-SERVER := www.j8takagi.net
-REPOSDIR := /home/git
-
-PROJECTNAME := $(notdir $(CURDIR))
-REPOSNAME := $(PROJECTNAME).git
-REPOS := $(REPOSDIR)/$(REPOSNAME)
-SERVERREPOS := $(SERVER):$(REPOS)
-
-REPOSEXT := $(strip $(shell $(SSH) $(SERVER) $(LS) -d $(REPOS) || $(ECHO)))
-GITORIGIN := $(strip $(shell $(GIT) remote | grep origin))
-
-.PHONY: gitorigin-add gitorigin-show gitpush gitorigin-clean gitrepos
-
-gitpush: gitorigin
-       $(GIT) push --set-upstream origin master
-
-gitorigin: gitrepos
-       $(if $(GITORIGIN),@($(ECHO) 'remote origin exists. git remote set-url origin <url>'),$(GIT) remote add origin $(SERVERREPOS))
-
-gitrepos:
-       $(if $(REPOSEXT),,$(SSH) $(SERVER) '$(MKDIR) $(REPOSDIR)/$(REPOSNAME) && $(CD) $(REPOS) && $(GIT) init --bare')
-
-gitorigin-clean:
-       $(GIT) remote remove origin