See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/bin/bash | |
| # Download_Songs.sh | |
| # By Noah Betzen (Nezteb) | |
| # | |
| # Requires youtube-dl: https://rg3.github.io/youtube-dl/ | |
| # You can install youtube-dl via most package managers: | |
| # brew install youtube-dl | |
| # apt-get install youtube-dl | |
| # |
| #!/bin/sh | |
| # Firefox Developer Edition install | |
| # No need to download this script, just run it on your terminal: | |
| # $ curl -L git.io/firefoxdev | sh | |
| # When you need to update Firefox Developer Edition, run this script again. | |
| START_CMD="firefox-dev" | |
| INSTALLATION_DIR="/opt/${START_CMD}" |