How to remove RVM Default?

I set my default RVM in ruby ​​1.9.2. I want to remove this and keep it at zero.

How can i do the same?

Thank.

+3
source share
3 answers

Removing any alias is as simple as:

rvm alias delete default

It is better to use it over the rm ~/.rvm/config/aliasone suggested by @Sunny J., as it performs additional cleaning steps.

It is also better than rvm reset, since it only removes an alias, and does not restore all rvm settings.

+7
source

Based on https://github.com/wayneeseguin/rvm/blob/master/scripts/functions/reset

To remove your default value without making other settings in rvm,

rm ~/.rvm/config/alias

rvm.

+2

. rvm -h:

reset       :: remove current and stored default & system settings.

, rvm reset - , .

+1

All Articles