Skip to content

Instantly share code, notes, and snippets.

View fernandoAlfaro00's full-sized avatar
馃

fernandoAlfaro00

馃
View GitHub Profile
##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

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@fernandoAlfaro00
fernandoAlfaro00 / GIT.md
Created January 6, 2021 16:04 — forked from dasdo/GIT.md
Lista de Comandos en GIT

Configuraci贸n B谩sica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email [email protected]