Home | History | Annotate | Download | only in glide

Lines Matching refs:git

23 if ! git remote | grep bump > /dev/null;
25 git remote add bump https://github.com/bumptech/glide.git
30 git fetch bump ${GLIDE_BRANCH} || exit 1
37 git checkout ${ANDROID_BRANCH_NAME}
40 git merge FETCH_HEAD || true
43 git rm -rf samples || true
44 git rm -rf integration || true
45 git rm -rf static || true
46 git rm -rf glide || true
47 git rm -rf .idea || true
50 git rm -rf library/src/androidTest || true
51 git rm -rf third_party/gif_decoder/src/androidTest || true
52 git rm -rf third_party/gif_encoder/src/androidTest || true
56 git submodule deinit third_party/disklrucache
57 git rm -rf third_party/disklrucache
62 git clone https://github.com/sjudd/disklrucache $REMOTE_DISK_PATH
65 # Remove git related things to avoid re-adding a submodule.
66 rm -rf $REMOTE_DISK_PATH/.git
70 git add third_party/disklrucache
73 find . -name "*gradle*" | xargs -r git rm -rf
74 find . -name "*checkstyle*.xml" | xargs -r git rm -rf
75 find . -name "*pmd*.xml" | xargs -r git rm -rf
76 find . -name "*findbugs*.xml" | xargs -r git rm -rf
77 find . -name "*.iml" | xargs -r git rm -rf
80 GIT_SHA=$(git rev-parse FETCH_HEAD)
82 echo "Now fix any merge conflicts, commit, and run: git push goog ${ANDROID_BRANCH_NAME}"