美文网首页读书
在VsCode中用Git命令上传代码

在VsCode中用Git命令上传代码

作者: 方_圆 | 来源:发表于2022-03-22 16:49 被阅读0次

    git init //初始化仓库

    git add .    //添加文件目录到git仓库

    git commit -m "注释"    //上传到git仓库

    git remote add origin https://github.com/自己的github用户名/项目.git(自己仓库)

    如果报error: remote origin already exists.    删除关联的origin的远程库)

    再输入git remote add origin https://github.com/自己的github用户名/项目.git(自己仓库)git 就不会报错了!

    //在github仓库中可找到这个链接

    git push -u origin master    //推送到分支(分支名master为主分支)

    相关文章

      网友评论

        本文标题:在VsCode中用Git命令上传代码

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