赞
踩
git init
git remote add origin https://github.com/XXX/xxx.git
git chechout -a
//查看有没有默认分支,没有的话随便建立一个本地文件先建立默认分支master,这里用Readme.md
git add Readme.md
git commit -m "Initial commit"
git branch -a
//这时候就会产生默认分支,然后创建新分支
git branch test
git checkout test//切换成功
git add .
git status
git commit
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。