method

clone

rails latest stable - Class: Rails::Git

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

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