OSDN Git Service

Conflicts:
authorTakuo Yasunaga <yasunaga@bio.kyutech.ac.jp>
Mon, 12 May 2014 00:43:40 +0000 (09:43 +0900)
committerTakuo Yasunaga <yasunaga@bio.kyutech.ac.jp>
Mon, 12 May 2014 00:43:40 +0000 (09:43 +0900)
Makefile

1  2 
Makefile

diff --cc Makefile
+++ b/Makefile
@@@ -179,37 -184,11 +186,43 @@@ git-init-tutorial:
  
  git-init-others::
        if [ ! -d others ] ; then mkdir others; fi
 -
 -
 +      cd others ; git remote remove others; git remote add others $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY_OTHERS)
 +
 +
 +git-clone-all:: git-init git-init-data git-init-optional git-init-tutorial
 +
 +git-clone:git-init
 +      if [ ! -d  .git ] ; \
 +      then \
 +              git clone --depth 1 $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY) ./ ; \
 +      fi
 +
 +git-clone-data: git-init-data
 +      cd data;  if [ ! -d .git ] ; \
 +      then \
 +              git clone --depth 1 $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY_DATA) ./; \
 +      fi
 +
 +git-clone-optional: git-init-optional 
 +      cd optional; if [ ! -d .git ] ; \
 +      then \
 +              git clone --depth 1 $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY_OPTIONAL) ./ ; \
 +      fi
 +
 +git-clone-tutorial: git-init-tutorial
 +      cd tutorial; if [ ! -d .git ] ; \
 +      then \
 +              git clone --depth 1 $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY_TUTORIAL) ./ ; \
 +      fi
 +
 +git-clone-others: git-init-others
 +      cd others ; if [ ! -d .git ] ; \
 +      then \
 +              git clone --depth 1 $${EOS_GITUSER}@$(EOS_GIT_REPOSITRY_OTHERS) ./ ; \
 +      fi
+       cd others ; git remote add others $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY_OTHERS)
+ git-init-others2::
+       if [ ! -d others2 ] ; then mkdir others2; fi
+       cd others2 ; git remote add others2 $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY_OTHERS)