Apache is running on port 80 and interfering with Valet.
- Stop Apache: sudo /usr/sbin/apachectl stop
- Restart Valet: valet restart
| git checkout master | |
| git checkout -b bug123 | |
| git pull http://repourl.git branch | |
| git log | grep "Author" | head -1 # get the author | |
| git checkout master | |
| git merge --squash bug123 | |
| git commit -a --author="Author" --message="Close #1: Title. Fixes #666" | |
| git push origin master | 
| # Compress file | |
| zip compressed.zip file_name.txt | |
| # Compress Folder | |
| zip -r compressed.zip folder_name/ | |
| # Uncompress zipped file to current directory | |
| unzip compressed.zip | |
| # Uncompress zipped to current directory to specific location |