A convenient reference for adding a GPL license to a work.
All prepared texts are hard wrapped at 80 characters unless stated otherwise.
| <!DOCTYPE html> | |
| <html> | |
| <style type="text/css"> | |
| body { | |
| width: 100%; | |
| height: 100%; | |
| position: absolute; | |
| background-color: black; | |
| top: 0%; | |
| left: 0%; |
| #!/usr/bin/env bash | |
| # Install git-secrets template for new and cloned repos | |
| if [ ! -d "$HOME/.git-templates/git-secrets" ] | |
| then | |
| echo "Installing git-secret globally" | |
| git secrets --register-aws --global | |
| git secrets --install $HOME/.git-templates/git-secrets | |
| git config --global init.templateDir $HOME/.git-templates/git-secrets |