如何撤消 rvm 设置稳定?

如何撤消 rvm 设置稳定?

我安装了 rvm 2.0.0,一切正常,然后我犯了一个错误,rvm get head 然后为了纠正这个问题,我添加了rvm get stable 但是现在当我尝试rvm install 2.0.0-study(同样的错误rvm install 2.0.0 -n study)时,我得到了这个丑陋的错误

HEAD is now at 588c139 * remove trailing spaces.
remote: Counting objects: 9, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 5 (delta 4), reused 1 (delta 0)
Unpacking objects: 100% (5/5), done.
From git://github.com/ruby/ruby
   08fbd2c..babae04  trunk      -> origin/trunk
Switched to branch 'ruby_2_0_0'
From git://github.com/ruby/ruby
 * branch            ruby_2_0_0 -> FETCH_HEAD
Already up-to-date.
error: pathspec 'tudy' did not match any file(s) known to git.
There has been an error while trying to checkout the source branch.
Halting the installation.
There has been an error fetching the ruby interpreter. Halting the installation.

我怎样才能撤消我的 rvm 设置稳定?...或修复此错误

答案1

由于study名称与sha提交选择器冲突,您可以在此处查看不允许使用的名称的完整列表http://rvm.io/rubies/命名

相关内容