赞
踩
步骤 | 命令 | 解释 |
---|---|---|
1 | git init | 本地初始化 |
2 | git add . | 增加所有文件和文件夹到备用 |
3 | git commit -m “first commit” | 增加上传注释 |
4 | git branch -M main | 主分支 |
5 | git remote add origin https://github.com/morgansong/AutoCar.git | 进行项目链接 |
6 | git remote set-url origin https://ghp_你的密匙@github.com/morgansong/AutoCar.git | 添加密匙 |
7 | git push -u origin main | 上传 |
步骤 | 命令 | 描述 |
---|---|---|
1 | git add “README.md” | 增加文件和文件夹到备用 |
2 | git commit -m “add description” | 增加上传注释 |
3 | git push | 上传 |
步骤 | 命令 | 描述 |
---|---|---|
0 | git status | 查看所有变化 |
1 | git add . | 添加所有变化到上传 |
2 | git commit -m 'pictures‘ | 添加上传注释 |
3 | git push | 上传 |
6. 在另外电脑B上,下载文件夹(比如在不同的电脑上工作相同的项目)
复制仓库地址
进入本地文件夹右键,点bash here
使用命令git clone https://github.com/morgansong/AutoCar.git --> 在当前文件夹中间间里文件夹AutoCar
或者命令git clone https://github.com/morgansong/AutoCar.git myfolder --> 在当前文件夹中间间里文件夹myfolder
然后下载成功:
在电脑B,修改并上传 《基本相同:3. 开始上传整个项目》
然后再在电脑A上同步B上修改的用命令git pull
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。