GitHub上有趣的资源

github使用方法(1)克隆仓库创建分支并上传

2020-04-22  本文已影响0人  塔塔七

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
上一篇 下一篇

猜你喜欢

热点阅读