Home > rails3-learning

rails3-learning

Rails3-learning is a project mainly written in ..., it's free.

Learning Rails 3

LEARNING RAILS 3

Memo on How to Clone play with GITHUB

Global setup: Download and install Git git config --global user.name "Ganesan" git config --global user.email [email protected]

Next steps: mkdir test cd test git init touch README git add README git commit -m 'first commit' git remote add origin [email protected]:ganesan/test.git git push origin master Existing Git Repo? cd existing_git_repo git remote add origin [email protected]:ganesan/test.git git push origin master

Importing a Subversion Repo? Click here When you're done: Continue