Skip to content

Instantly share code, notes, and snippets.

@hectorcorrea
hectorcorrea / .bashrc
Last active August 23, 2024 13:00
My .bashrc (this is actually in my .bash_profile)
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'