This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git config --global user.email '[email protected]' | |
git config --global user.name 'Travis' | |
git remote set-branches --add origin master | |
git fetch | |
git reset --hard | |
git checkout master | |
git merge --ff-only "$TRAVIS_COMMIT" | |
git push git+ssh://[email protected]/${TRAVIS_REPO_SLUG}.git master |