This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ESTÁNDARES DE COMMITS – CONVENTIONAL COMMITS + EMOJIS | |
# Formato: 🎯 <tipo>(<alcance>): <descripción> | |
# EJEMPLO: | |
# ✨ feat(misiones): agregar nueva misión de reconocimiento | |
# TIPOS MÁS COMUNES: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GIT + GITHUB – CHEAT SHEET | |
# CONFIGURACIÓN INICIAL | |
git config --global user.name "Tu Nombre" | |
git config --global user.email "tu@email.com" | |
git config --global init.defaultBranch main | |
git config --global pull.rebase true | |
# INICIO | |
git init # Crea repo local |