-
Notifications
You must be signed in to change notification settings - Fork 11
Create project
mistbow edited this page Mar 17, 2013
·
1 revision
First of all let`s create a new project(cd your own directory):
rails new cms_6bey -d mysql
This will create a new project called cms_6bey with mysql database
git init
Connect with remote repository
Git remote add origin https://github.com/mistbow/6bey.git
Maybe you will get 403 exception. Change the url to https://yourname@github.com/mistbow/6bey.git
git add .
git commit -m "Init rails project with mysql database"
git merge origin
git push