1、克隆远程仓库
git clone https://github.com/Tower-7/edu.git
2、创建本地分支
git branch dev
3、提交分支
git add .
git commit -m "dev"
git push --set-upstream origin dev
4、使用http方式克隆提交代码时需要每次都输入密码,所以使用以下语句保存密码到本地
git config --global credential.helper store
5、切换分支
git chedckout dev
6、上传代码
git add .
git commit -m "first-commit"
git push
网友评论