Skip to content

Instantly share code, notes, and snippets.

@Klerith
Last active April 3, 2025 09:34
Show Gist options
  • Save Klerith/0acf18bbece7923bcac55edb71b03c2b to your computer and use it in GitHub Desktop.
Save Klerith/0acf18bbece7923bcac55edb71b03c2b to your computer and use it in GitHub Desktop.
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

@carodriguezw
Copy link

Maestro de los maestros me sale este error!!!! PS D:\CURSOS\GIT\04-Heroes> error de git lg: valor de color no válido: azul negrita fatal: no se puede analizar --formato bonito

error git lg

@carodriguezw
Copy link

ya lo solucione deben de color en english los valores adjunto la solución

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment