Skip to content

Instantly share code, notes, and snippets.

View JovanyCm1's full-sized avatar
🤖

Jaime Carrizalez JovanyCm1

🤖
View GitHub Profile
@pazteddy
pazteddy / docker-compose.yaml
Created April 21, 2025 20:03
Contenedor SQL Server 2022 con Docker Compose
services:
sql:
image: mcr.microsoft.com/mssql/server:2022-latest
container_name: sqlserver2022
ports:
- "1433:1433"
environment:
ACCEPT_EULA: "1"
MSSQL_SA_PASSWORD: "MyStrongPass123"
MSSQL_PID: "Developer"
@Klerith
Klerith / instalaciones.md
Last active January 26, 2026 18:51
Instalaciones recomendadas - Curso de Angular de cero a experto
@Klerith
Klerith / git-alias.md
Last active January 22, 2026 02:47
Useful Git Alias

Log

git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

Status

git config --global alias.s status --short

Alternativa útil de status

git config --global alias.s status -sb