Git创建分支/GIT提交分支

git clone xxx.git
cd fwspp-react
git init
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
git checkout -b daily/0.0.1
git push origin daily/0.0.1

切记,一定要先git init/push一些文件到远程origin仓库,否则创建仓库分支会报错

rror: src refspec master does not match any.
error: failed to push some refs to 'git@xxx.git'
上一篇:解决因为数据库正在使用,所以无法获得对数据库的独占访问权。 (Microsoft.SqlServer.Smo)


下一篇:React+Redux打造“NEWS EARLY”单页应用 一步步让你理解最前沿技术栈的真谛