OSDN Git Service

Bug Fixed: ID 34305: git-fetch-tag in Makefile
authorkinoshita-eos <kinoshita@yasunaga-lab.bio.kyutech.ac.jp>
Fri, 12 Sep 2014 06:41:34 +0000 (15:41 +0900)
committerkinoshita-eos <kinoshita@yasunaga-lab.bio.kyutech.ac.jp>
Fri, 12 Sep 2014 06:41:34 +0000 (15:41 +0900)
modified:   Makefile

Makefile

index dbb49fb..17b0766 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -221,22 +221,19 @@ git-push-with-check::
 git-fetch-all:: git-fetch git-fetch-data git-fetch-optional git-fetch-tutorial git-fetch-others
 
 git-fetch::
-       cd .       ; git fetch origin master ; git-fetch-tag-common ; git log -1
+       cd .       ; git fetch origin master --tags     ; git log -1
 
 git-fetch-data::
-       cd data    ; git fetch data master    ; git-fetch-tag-common ; git log -1
+       cd data    ; git fetch data master --tags               ; git log -1
 
 git-fetch-optional::
-       cd optional; git fetch optional master; git-fetch-tag-common ; git log -1
+       cd optional; git fetch optional master --tags   ; git log -1
 
 git-fetch-tutorial::
-       cd tutorial; git fetch tutorial master; git-fetch-tag-common ; git log -1
+       cd tutorial; git fetch tutorial master --tags   ; git log -1
 
 git-fetch-others::
-       cd others  ; git fetch others master  ; git-fetch-tag-common ; git log -1
-
-git-fetch-tag-common::
-       git fetch --tag --depth 1
+       cd others  ; git fetch others master --tags             ; git log -1
 
 git-merge-all:: git-merge git-merge-data git-merge-optional git-merge-tutorial git-merge-others