Skip to content

Instantly share code, notes, and snippets.

View jamieandyou's full-sized avatar

Jamie Kleyweg jamieandyou

View GitHub Profile
.bar-header {
background-color: #5069A1;
}
ion-side-menu li .item {
background-color: #313848;
border-color: #4F5865;
color: #BCC3CF;
}
.bar-header {
background-color: #5069A1;
}
ion-side-menu li .item {
background-color: #313848;
border-color: #4F5865;
color: #BCC3CF;
}
tail -f /private/var/log/apache2/sites_error_log
Error log print out
error_log("In here");
error_log(print_r($test, 1));
On page print out
print_r($test);
@jamieandyou
jamieandyou / merging-pull-requests-using-the-command-line.txt
Last active January 31, 2017 11:31
Merging pull requests using the command line
credit to https://github.com/mdkrog
git checkout development
git pull origin development
git checkout your-local-branch
git rebase -i development
git push -f origin your-local-branch
git checkout development
git merge your-local-branch --ff-only
git push origin development