See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/bash | |
| # Program: | |
| # EC2 initially install node.js, git for development environment. | |
| # You can modify nodev and nvmv for changing node and nvm version. | |
| # Set permission to ec2-user install above. | |
| # History: | |
| # 2017/07/25 Hans First release | |
| home=/home/ec2-user | |
| nodev='8.11.2' | |
| nvmv='0.33.11' |
| # The folders below will be cached between builds | |
| # http://docs.gitlab.com/ce/ci/yaml/README.html#cache | |
| cache: | |
| paths: | |
| - node_modules/ | |
| - _site # or other arbitrary directory | |
| stages: | |
| - build | |
| - test |