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 | |
| # Executar comandos a seguir para atualizar os pacotes | |
| sudo apt update -y | |
| sudo apt upgrade -y | |
| # Só o Python | |
| sudo apt install python3.10-full python3.10-dev -y | |
| # Instalar pacotes a seguir |