I like bash it’s simple shell and didn’t found any problem until yet. Few configuration I like in my .bashrc is given below.

  • I like VI mode in bash, it’s really handy
# ~/.bashrc
set -o vi
  • Sometimes you have to login to two github account for that I keep alias for my second SSH key handy
alias git_clone="GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa_personal' git clone"