vote up 2 vote down star
1

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.

flag

33% accept rate

5 Answers

vote up 0 vote down

You should just be able to navigate to the plugin's directory and hit: git pull . I'm pretty sure that script/install plugin just checks the code out from the git repo.

link|flag
doesn't work - I get: fatal: Not a git repository – jcoby Oct 14 '08 at 13:56
well, what do you mean they were "installed through git". If they're not git repos then what do you mean by that? – Greg Borenstein Oct 17 '08 at 2:27
they were installed from a git repo, but are housed in my app's svn repo. if that makes sense. see activemerchant.org and look at the plugiin/install instructions. – jcoby Oct 20 '08 at 18:08
vote up 1 vote down

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 script/plugin install again, passing in --force if you need to. For example:

script/plugin install --force git://github.com/dchelimsky/rspec.git
link|flag
that sort of works, but it puts the directory in an unknown state in terms of svn since it actually just deletes the vendor/plugin/active_merchant dir and reinstalls it. – jcoby Oct 20 '08 at 18:09
vote up 0 vote down

In order for Git to be able to recognise the repository as a Git repository, you will need to add the .git subdirectory and everything under it to Subversion as well. Otherwise, the plugin will just look like another pile of source code and Git will say it's "Not a Git repository".

link|flag
vote up 0 vote down

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".

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.