美文网首页
10 推荐免费 Git 仓库

10 推荐免费 Git 仓库

作者: acc8226 | 来源:发表于2021-07-24 21:30 被阅读0次

Git 免费仓库

Gitee 开源中国-基于 Git 的代码托管和研发协作平台【推荐】
https://gitee.com/

CODING 代码托管 | 极速 Git 代码仓库服务
https://coding.net/products/repo

阿里云效 Codeup
https://codeup.aliyun.com/

腾讯工蜂
https://git.code.tencent.com/

GitHub【国内访问,可能很慢】
https://www.github.com/

Git 仓库上传大文件

根据 2019 年的统计数据,如果简单使用 git 来上传大文件的话,也不是不可以。

  • coding 30 MB
  • 阿里云效 50 MB
  • 码云 最大为100 MB

coding 提供了 文件网盘功能,普通用户提供了高达 30GB 的容量。


使用 Git LFS 上传大文件

下载和安装 Git LFS

让本地新仓库支持 Git LFS

# 初始化一个仓库
$ mkdir big-repo
$ cd big-repo 
$ git init
Initialized empty Git repository in /Users/dyrone/big-repo/.git/
# 让仓库支持LFS
$ git lfs install
Updated pre-push hook.
Git LFS initialized.
# install成功后,仓库的pre-push钩子将被替换和生效

想了解更多 Git Large File Storage 的内容,可以参考 https://git-lfs.github.com/

相关文章

  • 10 推荐免费 Git 仓库

    Git 免费仓库 Gitee 开源中国-基于 Git 的代码托管和研发协作平台【推荐】https://gitee....

  • 【GitHub学习笔记-03-导言3】

    1.5 GitHub提供的主要功能 Git仓库 Git代码托管仓库,公共仓库免费建立,私有仓库需要缴纳每月7美元的...

  • [实践2] 项目初始化准备

    项目准备 代码仓库 使用bitbucket 提供的免费git仓库 使用sourcetree作为git客户端工具 s...

  • git免费仓库

    阿里git https://help.aliyun.com/document_detail/173288.html...

  • cocoa pods 新建子仓

    1、建立远端git仓库 2、提交子仓库代码到远端仓库 3、git submodule add http://10....

  • git 的用法

    Git工具 一 建立仓库 用Git进行代码版本管理,肯定得先有个仓库啊,仓库的选择一般按公司的要求来,现在免费得代...

  • git subtree教程

    关于子仓库或者说是仓库共用,git官方推荐的工具是git subtree。 我自己也用了一段时间的git subt...

  • 三、远程仓库

    0. 注册github账号,创建仓库 注册github账号,免费获得Git远程仓库。注册账号和创建仓库比较简单,此...

  • InstantCode, 随时随地用iPad/iPhone编程

    多种编程语言语法高亮 Git仓库克隆 自动保存修改 你想要的,都有了。 最重要的是,现在免费!免费!! 免费!!!...

  • 搭建博客

    【详细】 →→→ →→→5分钟 搭建免费个人博客 一、安装 1.Git 安装git 注册github 创建仓库us...

网友评论

      本文标题:10 推荐免费 Git 仓库

      本文链接:https://www.haomeiwen.com/subject/rknyzhtx.html