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 | |
| # ネットワーク設定スクリプト | |
| # 静的IPアドレスを設定し、起動時の自動有効化を行う | |
| set -e | |
| # 設定値 | |
| IP_ADDRESS="192.168.1.99" | |
| NETMASK="24" |