My rails app is in a svn repository, but several of the plugins are installed through git and later added to the svn repo. How can I update these plugins? I can't seem to get script/plugin update to do anything. I'd really like to update activemerchant to get rid of the Inflector warnings.
|
1
|
|
|
|
|
|
You should just be able to navigate to the plugin's directory and hit:
|
||||||
|
|
|
If you haven't made any local changes to the plugin and you don't need to track what changes to it the update will bring, you can just run
|
||
|
|
|
In order for Git to be able to recognise the repository as a Git repository, you will need to add the |
||
|
|
|
|
Anyone have a definite solution to this or could someone please explain more about the .git subdirectory requirement? I have the Paperclip plugin for Rails and I'd like to update it without screwing up my working copy, which happens when I run "script/plugin install --force". |
||
|
|
|
|
Ran into the same situation and used this solution: had paperclip installed as a plugin sitting in an svn repo as part of my app. Now I wanted to use the latest version instead and didnt change a bit of the paperclip plugin so I could easyly remove it from the app/svn and install it as a gem instead. done. |
||
|
|
