This file contains 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
# ssh [email protected] info | |
# get around restriction on shallow pushes by WP Engine | |
git filter-branch -- --all | |
git checkout master | |
git config --global user.name "${CI_COMMITTER_NAME}" | |
git config --global user.email "${CI_COMMITTER_EMAIL}" | |
# Combine remote git servers | |
git remote add servers $WPE_SERVERS |
This file contains 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
# Setup | |
# Get around restriction on shallow pushes by WP Engine | |
git filter-branch -- --all | |
git checkout staging [OR ANY OTHER BRANCH] | |
# Add User Data | |
git config --global user.name "codeship-username" | |
git config --global user.email "[email protected]" |
NewerOlder