See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/sh | |
| set -e | |
| vendor/bin/phpunit | |
| npm run prod | |
| git add . | |
| (git commit -m "Build frontend assets for deployment to production") || true | |
| (git push) || true |
wget https://downloadsapachefriends.global.ssl.fastly.net/7.3.6/xampp-linux-x64-7.3.6-2-installer.run
sudo chmod 755 xampp-linux-x64-7.3.6-2-installer.run
sudo ./xampp-linux-x64-7.3.6-2-installer.run
sudo chown -R $USER:$USER /opt/lampp/htdocs$ sudo apt-get update
$ sudo apt-get install ruby ruby-dev make gcc
$ sudo gem install jekyll bundler
see source
| #!/bin/bash | |
| # A simple test script to demonstrate how to find the | |
| # "absolute path" at which a script is running. Used | |
| # to avoid some of the pitfals of using 'pwd' or hard- | |
| # coded paths when running scripts from cron or another | |
| # directory. | |
| # | |
| # Try it out: | |
| # run the script from the current directory, then |
| #!/bin/bash | |
| # Uninstall old version | |
| sudo apt-get remove docker docker-engine docker.io | |
| # Update apt package index | |
| sudo apt-get update | |
| # Install packages to allow apt to use a repo over HTTPS | |
| sudo apt-get install apt-transport-https ca-certificates curl software-properties-common | |
| # Add Docker offical GPG Key | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
| <?php | |
| # Cron job command for Laravel 4.2 | |
| # Inspired by Laravel 5's new upcoming scheduler (https://laravel-news.com/2014/11/laravel-5-scheduler) | |
| # | |
| # Author: Soren Schwert (GitHub: sisou) | |
| # | |
| # Requirements: | |
| # ============= | |
| # PHP 5.4 |