本地仓库和github仓库连接
程序员文章站
2022-07-13 17:30:14
...
- 背景,复习git操作,本地创建好的文件无法和github仓库连接起来,查了很多资料,发现网上资料缺损
- 实战
- 新建文件夹+文件
- 添加远程仓库
- 拉取远程仓库代码到本地
- 将本地文件上传
- git push
- 具体看下面代码
- 代码
-
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
上一篇: 本地仓上传github仓库
下一篇: 杭电OJ 1104(C++)
推荐阅读