Explorar el Código

No tags when fetching

Willy-JL hace 2 años
padre
commit
01a4a4aaab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      .utils/subdir-helper.sh

+ 1 - 1
.utils/subdir-helper.sh

@@ -15,7 +15,7 @@ prev=$(git branch --show-current)
 temp=$(echo ${repo%/} | rev | cut -d/ -f1,2 | rev | tr / -)-${branch}
 fetch=_fetch-${temp}
 split=_split-${temp}-$(echo ${subdir} | tr / -)
-git fetch ${repo} ${branch}:${fetch}
+git fetch --no-tags ${repo} ${branch}:${fetch}
 git checkout ${fetch}
 git subtree split -P ${subdir} -b ${split}
 git checkout ${prev}