- Make sure all changed files are committed on feature-branch
- Rebase on your feature-branch =>
git pull --rebase upstream master
- Switch to your master branch =>
git checkout master
- Rebase on your master =>
git pull --rebase upstream master
- If there are changes then push changes to master =>
git push origin master
- Go back to feature-branch =>
git checkout feature-branch
- Push changes from feature-branch to github =>
git push origin feature-branch
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 | |
echo "===============================" | |
echo "Installing PHP 7" | |
echo "===============================" | |
sudo yum install php70 | |
echo "===============================" | |
echo "Installing PHP 7 additional commonly used php packages" | |
echo "===============================" |