See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| ##multimedia | |
| sudo apt install ubuntu-restricted-extras vlc -y | |
| ##dev | |
| sudo apt install code python3 nodejs npm konsole python3-pip -y | |
| ##other | |
| sudo apt install htop unzip -y | |
| ###google chrome | |
| curl -Lo google-chrome-stable.deb dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| chmod 700 google-chrome-stable.deb | |
| sudo apt install ./google-chrome-stable.deb -y |
Configurar Nombre que salen en los commits
git config --global user.name "dasdo"
Configurar Email
git config --global user.email [email protected]