欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

本地仓库和github仓库连接

程序员文章站 2022-07-13 17:30:14
...
  1. 背景,复习git操作,本地创建好的文件无法和github仓库连接起来,查了很多资料,发现网上资料缺损
  2. 实战
    • 新建文件夹+文件  
    • 添加远程仓库
    • 拉取远程仓库代码到本地
    • 将本地文件上传
    • git push
    • 具体看下面代码
  3. 代码
  4. mkdir test
    cd test
    git init 
    touch kkk.txt
    git remote add origin [email protected]:xxxxxxx/mytest.git
    git pull origin master
    git add kkk.txt
    git commit -m "xxx"
    //第一种
    git push --set-upstream orgin master//或者使用
    //第二种
    git branch yourbranch remotes/origin/<branch>
    git push
    //第三种
    git branch --set-upstream-to=origin/<branch> master//将本地与远程连接起来
    git push
    

 

相关标签: git github