步骤:
- 新建仓库:
git init
- 添加文件:
git add .
- 注释:
git commit -m "init"
- 添加第一个远程仓库:
git remote add origin git@gitee.com:Pycharm-Project/CustomFields.git
- 添加第二个远程仓库:
git remote set-url --add --push origin git@github.com:ma3252788/CustomFields.git
- 添加第三个远程仓库:
git remote set-url --add --push origin git@gitee.com:public_sharing/CustomFields.git
这样在推送仓库的时候,就会自动往三个仓库中同时推送了:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# mcj @ M1-Max in ~/Downloads/test/CustomFields on git:master o [10:53:07] $ git push origin master 枚举对象中: 5, 完成. 对象计数中: 100% (5/5), 完成. 使用 10 个线程进行压缩 压缩对象中: 100% (3/3), 完成. 写入对象中: 100% (3/3), 405 字节 | 405.00 KiB/s, 完成. 总共 3(差异 2),复用 0(差异 0),包复用 0(来自 0 个包) remote: Powered by GITEE.COM [GNK-6.4] To gitee.com:Pycharm-Project/CustomFields.git 962d98a..5144aed master -> master 枚举对象中: 5, 完成. 对象计数中: 100% (5/5), 完成. 使用 10 个线程进行压缩 压缩对象中: 100% (3/3), 完成. 写入对象中: 100% (3/3), 405 字节 | 405.00 KiB/s, 完成. 总共 3(差异 2),复用 0(差异 0),包复用 0(来自 0 个包) remote: Powered by GITEE.COM [GNK-6.4] To gitee.com:public_sharing/CustomFields.git 962d98a..5144aed master -> master 枚举对象中: 5, 完成. 对象计数中: 100% (5/5), 完成. 使用 10 个线程进行压缩 压缩对象中: 100% (3/3), 完成. 写入对象中: 100% (3/3), 405 字节 | 405.00 KiB/s, 完成. 总共 3(差异 2),复用 0(差异 0),包复用 0(来自 0 个包) remote: Resolving deltas: 100% (2/2), completed with 2 local objects. To github.com:ma3252788/CustomFields.git 962d98a..5144aed master -> master |