当前位置:   article > 正文

新建github仓库并且在不同电脑同步_不同的电脑github

不同的电脑github
  1. 在www.github.com上新建项目
  2. 在GitHub上面新建上传用给的密匙key (密匙和单一项目对应)
    在这里插入图片描述
  3. 比如在电脑A上,开始上传整个项目
步骤命令解释
1git init本地初始化
2git add .增加所有文件和文件夹到备用
3git commit -m “first commit”增加上传注释
4git branch -M main主分支
5git remote add origin https://github.com/morgansong/AutoCar.git进行项目链接
6git remote set-url origin https://ghp_你的密匙@github.com/morgansong/AutoCar.git添加密匙
7git push -u origin main上传
  1. 上传单个文件 (比如README.md文件)
步骤命令描述
1git add “README.md”增加文件和文件夹到备用
2git commit -m “add description”增加上传注释
3git push上传
  1. 上传文件夹 (如下图pictures文件夹)
    在这里插入图片描述
    在这里插入图片描述
步骤命令描述
0git status查看所有变化
1git add .添加所有变化到上传
2git commit -m 'pictures‘添加上传注释
3git push上传

在这里插入图片描述
6. 在另外电脑B上,下载文件夹(比如在不同的电脑上工作相同的项目)

  • 复制仓库地址
    在这里插入图片描述

  • 进入本地文件夹右键,点bash here
    在这里插入图片描述

  • 使用命令git clone https://github.com/morgansong/AutoCar.git --> 在当前文件夹中间间里文件夹AutoCar

  • 或者命令git clone https://github.com/morgansong/AutoCar.git myfolder --> 在当前文件夹中间间里文件夹myfolder
    在这里插入图片描述
    然后下载成功:
    在这里插入图片描述

  1. 在电脑B,修改并上传 《基本相同:3. 开始上传整个项目》

  2. 然后再在电脑A上同步B上修改的用命令git pull

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

闽ICP备14008679号