美文网首页GitHub上有趣的资源
github使用方法(1)克隆仓库创建分支并上传

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

作者: 塔塔七 | 来源:发表于2020-04-22 09:42 被阅读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
    

    相关文章

      网友评论

        本文标题:github使用方法(1)克隆仓库创建分支并上传

        本文链接:https://www.haomeiwen.com/subject/oudbihtx.html