I am trying to commit .rvmrc to svn
svn list
>> Gemfile
>> Gemfile.lock
>> config.rb
>> config.ru
>> source/
svn status
svn propedit svn:ignore . (delete ".rvmrc")
svn status
>> M .
>> ? .rvmrc
echo "#" >> .rvmrc
svn status
>> M .
>> ? .rvmrc
svn commit -m "rvmrc"
svn list
>> Gemfile
>> Gemfile.lock
>> config.rb
>> config.ru
>> source/
As a result there are no rvmrc on the server. I dont understand this magic. How to commit rvmrc?
Did you
svn add .rvmrc
before committing?