testGitFile.txt$ sudo git init$ sudo git add *$ sudo git commit -m "one test file"二、在github上创建一个仓库,并在..._git 添加运程">
当前位置:   article > 正文

git操作:在本地仓库添加运程仓库,并同步远程仓库_git 添加运程

git 添加运程

在本地仓库添加远程仓库,并同步远程仓库,步骤如下:

一、在本地创建一个目录,在目录在添加文件,并初始化仓库

$ mkdir testGit

$ echo "aaa">testGitFile.txt

$ sudo git init

$ sudo git add *

$ sudo git commit -m "one test file"

二、在github上创建一个仓库,并在上面写README文件

初始化远程仓库

三、在本地添加远程

$ sudo git remote add origin https://github.com/hefrankeleyn/testGit

-- 检查远程仓库是否添加成功

$ sudo git remote -v

四、将本地仓库和远程仓库进行同步

执行下面的命令,远程仓库的文件被同步到本地

$ sudo git pull --allow-unrelated-histories origin master

五、将本地已经提交的文件同步到远程仓库

sudo git push origin master

此时,远程仓库已经有本地的文件了:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/668083
推荐阅读
相关标签
  

闽ICP备14008679号