See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Generate new SSH Key | |
| ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
| # Test SSH connection to github | |
| ssh -T [email protected] | |
| # Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
| gpg --full-gen-key | |
| # maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` |