Skip to content

Commit

Permalink
Merge pull request ekoontz#2 from mapr/DEVOPS-438-1
Browse files Browse the repository at this point in the history
DEVOPS-438 - push each tag one at a time, in case one of the tags is bad

We don't have a consistent method of testing the alternate solution, so we are using the slow method for now.
  • Loading branch information
pwong-mapr committed May 31, 2016
2 parents 45c4804 + db43833 commit e8b98f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions git-to-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ do

git push --all origin
git push --tags origin

git tag | sort | while read GIT_TAG ; do
echo "GIT_TAG=${GIT_TAG}"
git push origin ${GIT_TAG} --force
done

popd #popping WORKSPACE_REPO

done #done iterating over tuples
Expand Down

0 comments on commit e8b98f1

Please sign in to comment.