Skip to content

Instantly share code, notes, and snippets.

@hectorcorrea
hectorcorrea / .bash_profile
Last active January 17, 2025 16:59
My .bash_profile configuration
PS1="\w \$ "
alias ls='ls -G -la'
# Git aliases
alias st='git status'
alias br='git branch'
alias co='git checkout'
alias lg='git log'
alias df='git diff'