Skip to content

Instantly share code, notes, and snippets.

View dorianhenning's full-sized avatar
🏠
Working from home

Dorian Henning dorianhenning

🏠
Working from home
  • Imperial College London
  • London, UK
View GitHub Profile
@dorianhenning
dorianhenning / bash_aliases
Last active July 6, 2020 11:03
Bash aliases for Ubuntu
# Command Line Interface
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1="\[\033[95m\]\d \A \[\033[01;36m\]\u@\h\[\033[00m\]: \[\033[91m\]\w \[\033[01;32m\]\$(parse_git_branch)\n\[\033[01;00m\]∴ "
# Git aliases for fast typing
alias gita='git add'
alias gitc='git commit -m'