Created
March 21, 2012 10:14
-
-
Save behe/2145979 to your computer and use it in GitHub Desktop.
Reload .rvmrc after git checkout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put this is your .profile, .bashrc or similar to automatically reload your .rvmrc after git checkouts | |
git() { command git "$@" ; if [[ "$@" == *checkout* ]]; then [[ -s .rvmrc ]] && . .rvmrc; fi } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A small improvement: