Skip to content

Instantly share code, notes, and snippets.

View SupaMic's full-sized avatar

Michael Maloney SupaMic

  • SupaDesign
  • Victoria, BC
  • 21:31 (UTC -07:00)
View GitHub Profile
@d-kang
d-kang / gitflow1.md
Last active January 19, 2020 04:48

GIT WORKFLOW ONE: When you are ready to push your commits

  1. Make sure all changed files are committed on feature-branch
  2. Rebase on your feature-branch => git pull --rebase upstream master
  3. Switch to your master branch => git checkout master
  4. Rebase on your master => git pull --rebase upstream master
  5. If there are changes then push changes to master => git push origin master
  6. Go back to feature-branch => git checkout feature-branch
  7. Push changes from feature-branch to github => git push origin feature-branch
@mavieth
mavieth / install-php-7.sh
Created May 2, 2017 01:38
Upgrade from PHP 5.X.X to PHP 7 on an AWS EC2 Linux Server
#!/bin/bash
echo "==============================="
echo "Installing PHP 7"
echo "==============================="
sudo yum install php70
echo "==============================="
echo "Installing PHP 7 additional commonly used php packages"
echo "==============================="