method

clone

v2.3.8 - Show latest stable - Class: Rails::Git
clone(repos, branch=nil)
public

No documentation available.

# File railties/lib/rails_generator/generators/applications/app/scm/git.rb, line 5
    def self.clone(repos, branch=nil)
      system "git clone #{repos}"

      if branch
        system "cd #{repos.split('/').last}/"
        system "git checkout #{branch}"
      end
    end