Skip to content

Instantly share code, notes, and snippets.

View JovanyCm1's full-sized avatar
🤖

Jaime Carrizalez JovanyCm1

🤖
View GitHub Profile
@JovanyCm1
JovanyCm1 / java.json
Created October 29, 2025 21:50
Configuración personal de mis snippets preferidos en java para vs-code.
{
"public": {
"prefix": "pu",
"body": [
"public "
],
"description": "Palabra clave public."
},
"void": {
"prefix": "v",
@JovanyCm1
JovanyCm1 / git-alias.md
Last active December 11, 2025 17:43 — forked from Klerith/git-alias.md
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

echo "alias dev='npm run dev'" >> ~/.bashrc