diff --git a/.bash_aliases b/.bash_aliases index b42686d..3f26c86 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -20,9 +20,12 @@ cdll () { # Create standard git WIP commit with timestamps alias gitwip="git commit -m \"wip: $(date +%Y-%m-%dT%H:%M:%S%z) ($(date +%s))\"" - # Remove dropped upstream git branches from remote alias gitclear="git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D" +# Shorthand git pull origin +alias gitp="git pull origin" +# Shorthand git status" +alias gits="git status" # Generate random 16byte HEX alias rng16="head -c 16 /dev/random | xxd -p"