Skip to content

Instantly share code, notes, and snippets.

View andou's full-sized avatar
🐎
When you hear hoofbeats, think of horses not zebras

Antonio Pastorino andou

🐎
When you hear hoofbeats, think of horses not zebras
View GitHub Profile
@andou
andou / commit-msg
Created July 17, 2018 12:17
Commit message pro tip
#!/bin/sh
branch="`git rev-parse --abbrev-ref HEAD`"
echo "[branch:"$branch"]" >> $1
@andou
andou / aliazes
Created December 10, 2014 13:24
aliasesss
alias l='ls -lhtaGp'
alias ll='l'
alias wget='curl -O'
alias gllf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gll='git log --simplify-by-decoration --oneline --decorate'
alias gl='git log'
alias glf='git log --name-status'
alias gs='git status -s -b'
alias gss='git status'
alias ga='git add'
@andou
andou / aliases.md
Last active March 17, 2025 03:38
Cheat-sheet shorthand practical guide to Git
alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gl='git log --simplify-by-decoration --oneline --decorate'
alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gll='git log'
alias gs='git status -s -b'
alias gss='git status'
alias ga='git add'
alias gcm='git commit'
alias gc='git checkout'
alias gpl='git pull origin'