See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| $ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj | |
| Cloning into 'my-awesome-proj'... | |
| ssh: connect to host github.com port 22: Connection timed out | |
| fatal: Could not read from remote repository. | |
| $ # This should also timeout | |
| $ ssh -T git@github.com | |
| ssh: connect to host github.com port 22: Connection timed out | |
| $ # but this might work |
| from json import load, JSONEncoder | |
| from optparse import OptionParser | |
| from re import compile | |
| float_pat = compile(r'^-?\d+\.\d+(e-?\d+)?$') | |
| charfloat_pat = compile(r'^[\[,\,]-?\d+\.\d+(e-?\d+)?$') | |
| parser = OptionParser(usage="""%prog [options] | |
| Group multiple GeoJSON files into one output file. |
| from json import load, JSONEncoder | |
| from optparse import OptionParser | |
| from re import compile | |
| float_pat = compile(r'^-?\d+\.\d+(e-?\d+)?$') | |
| charfloat_pat = compile(r'^[\[,\,]-?\d+\.\d+(e-?\d+)?$') | |
| parser = OptionParser(usage="""%prog [options] | |
| Group multiple GeoJSON files into one output file. |
| files: | |
| "/opt/elasticbeanstalk/hooks/appdeploy/post/run_supervised_daemon.sh": | |
| mode: "000755" | |
| owner: root | |
| group: root | |
| content: | | |
| #!/usr/bin/env bash | |
| # Get django environment variables | |
| djangoenv=`cat /opt/python/current/env |