Reputation: 14671
I want to install from a particular branch on a git repo, how do I do it?
Upvotes: 0
Views: 128
Reputation: 7533
For plugins:
rails plugin install git://github.com/user/project.git -r branch_name
As gem, in your gemfile
declare something like:
gem "project", :git => "git://github.com/user/project.git", :branch => "branch_name"
Upvotes: 1