how to create a new project and add it to git, upload to github?
git initgit add .git commit -m “initial commit”create a repository on github.comgit remote add origin git@github.com:Luxiyalu/demo_app.gitgit push -u origin master
switch to branch “master”
git checkout master
merge current branch and branch “x”
git merge x
delete branch
git branch -d
只装本地bundle
bundle install –without production
所有改动提交push,msg为:”msg”
git commit -a -m “msg”