rails 4.2.2
1/rails _4.2.2_ new hello_app
2/修改gemfile
3/bundle install
4/rails server -b $IP -p $PORT(cloud9)
5/添加hello,action
6/修改路由(config/routes.rb)
root ‘application#hello‘
Git版本控制
1/git init(当前目录创建仓库)
2/git add -A(当前目录下的文件添加到仓库)
3/git commit -m "Initialize reposity"(提交添加,并添加说明)
Bitbucket代码托管
1/复制(本地cat命令),添加公钥(网站添加)
2/create reposity(网站添加)
3/添加Bitbucket,将本地的代码添加到bitbucket网站
git remote add origin [email protected]:jackzones/hello_app.git
4/推送,将代码推送到Bitbucket网站
git push -u origin --all
时间: 2024-10-21 23:22:38