昨天push代码到gitee.com码云的时候提示我的仓库超过3.0G, 还有两次push机会, 说什么只允许1G,
难道再push两次就要炸吗?看得哥一头雾水。
还好Q群里面小伙伴给我推荐了 https://coding.net/
https://coding.net/pricing
5 人以下团队
享有所有功能
充足的仓库容量
开箱即用,无需部署
小小鸡冻一下, 以后就首选coding了.
离线
root@jimmy:/opt/linux# git push origin FT6336
Counting objects: 28, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (28/28), 26.27 KiB | 996.00 KiB/s, done.
Total 28 (delta 24), reused 13 (delta 10)
remote: Checking connectivity: 28, done.
remote: Push failed because of repository size limit.
remote: Push 失败,当前 Git 仓库使用量已达到 2G,请联系管理员订购 Git 升级包扩充资源配额。
remote: error: hook declined to update refs/heads/FT6336
To e.coding.net:jimmy/linux.git
! [remote rejected] FT6336-> FT6336(hook declined)
error: failed to push some refs to 'git@e.coding.net:jimmy/linux.git'
root@jimmy:/opt/linux#
卧槽f**k, 充足的仓库容量,中文真是博大精深啊!!!
离线
看来不氪金都不能愉快的玩耍了, 还好我买了个 88 元的腾讯云主机乞丐版。
离线
Q群朋友说, 要迁移到腾讯云托管才可以无限空间: https://dev.tencent.com/help/doc/account/up-to-tencent
但是我登录 http://dev.tencent.com/login 怎么也不出现 【关联 CODING 帐号】
只能重新来一次了。
传SSH私钥 ==> 新建仓库 => git push 又得重走一遍。
离线
终于搞定 git 仓库的迁移:
###克隆一个裸库###
git clone 原始仓库地址 [b]--bare[/b]
git push 远程仓库(如origin) --all
一定记得是搭配腾讯云开发者平台的git仓库才行哦: http://dev.tencent.com/login
否则会提示文件超大。
离线