| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/bin/bash
- set -e
- if [ "$(git rev-parse --show-prefix)" != "" ]; then
- echo "Must be in root of git repo!"
- exit
- fi
- if [ "${1}" = "" ] || [ "${2}" = "" ] || [ "${3}" = "" ] || [ "${4}" = "" ] || [ "${5}" = "" ]; then
- echo "Usage: <path> <repo url> <branch> <subdir> <action>"
- exit
- fi
- path="${1}"
- repo="${2}"
- branch="${3}"
- subdir="${4}"
- action="${5}"
- prev="$(git branch --show-current)"
- temp="$(rev <<< "${repo%/}" | cut -d/ -f1,2 | rev | tr / -)-$(tr / - <<< "${branch}")"
- fetch="_fetch-${temp}"
- split="_split-${temp}-$(tr / - <<< "${subdir}")"
- git fetch --no-tags "${repo}" "${branch}:${fetch}"
- cache="${path}/.subtree-cache/${split}"
- hash="$(git rev-parse ${fetch})"
- skip=false
- if [ -f "${cache}" ]; then
- if git diff --quiet "$(<${cache})" "${hash}" -- "${subdir}"; then
- skip=true
- fi
- fi
- ok=true
- if $skip; then
- echo "No updates, skipping expensive subtree split."
- else
- git checkout "${fetch}"
- exec {capture}>&1
- result="$(git subtree split -P "${subdir}" -b "${split}" 2>&1 | tee /proc/self/fd/$capture)"
- if grep "is not an ancestor of commit" <<< "$result" > /dev/null; then
- echo "Resetting split branch..."
- git branch -D "${split}"
- git subtree split -P "${subdir}" -b "${split}"
- fi
- if grep "^fatal: " <<< "$result" > /dev/null; then
- ok=false
- fi
- git checkout "${prev}"
- if $ok; then
- git subtree "${action}" -P "${path}" "${split}" -m "${action^} ${path} from ${repo}"
- fi
- fi
- if $ok; then
- mkdir -p "${path}/.subtree-cache"
- echo "${hash}" > "${cache}"
- fi
|