Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD - Release v1.22.5 · go-gitea/gitea
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD - Release v1.22.3 · go-gitea/gitea
release/v1.7 release/v1.6 release/v1.5 release/v1.4 release/v1.3 optimize-parse-patch-read-loop release/v1.2 release/v1.1 bkcsoft/upgrade-drone bkcsoft/restore-command notification/issue-watch release/v1.0 public-cleanup release/v0.9 v1.8.1 ...
Git 命令在线学习 如何在 Gitee 导入 GitHub 仓库 Git 仓库基础操作 企业版和社区版功能对比 SSH 公钥设置 如何处理代码冲突 仓库体积过大,如何减小? 如何找回被删除的仓库数据 Gitee 产品配额说明 GitHub仓库快速导入Gitee及同步更新 什么是 Release(发行版) 将PHP 项目自动发布到 packagist.org ...
当您迁移包含工单的仓库时,它们的原始 ID 将被保留。现已支持从 Gitea、GitHub、GitLab 等实例迁移仓库、工单、PR,后续版本还会支持更多方案。 🚀 Federation 开发进度 (#19561 & #19462) Gitea 1.17 为将来允许各 Gitea 实例相互通信奠定了基础: 新增一个 API 路径,允许实例之间进行基本的通信 。(#19561) ...
首先看一看github的diff。 https://github.com/go-gitea/gitea/pull/6593/commits/7ee6794ad5266398c03b1c320804c6c2a6ce34ee 很明显修改点全是关于repo mirror的配置读写,也就是仓库镜像这个功能。其中让我怀疑的点有几个: 删除了"gopkg.in/ini.v1"这个包 ...
#添加Git用户 groupadd git useradd git -g git -s /bin/false #更新Git #IUS源依赖EPEL源 yum install epel-release -y #CentOS6自带的Git只有1.7,我们需要更新的版本 rpm -Uvh https://centos6.iuscommunity.org/ius-release.rpm #卸载老版本并安装新版 yum remove git -y yum install git2u -y #创...
collaborator 信任模型:只有经过验证的协作者提交才能被信任,同时这是一个相当激进的信任模型。committer 信任模型:兼容 GitHub,这意味着来自非合作者的仓库中经过验证的提交不会被标记为未验证。 如果您要使用旧的信任模型,则必须设置 ❗ 要求 Git 版本 >= 2.0 (#19577) ...
Gogs 目前 master 分支下的版本 Gitea 1.5.3 之前的版本 修复建议 Gogs 用户:develop 分支中已经更新漏洞修复代码,下载并安装。下载链接:https://github.com/gogs/gogs/tree/develop Gitea 用户:下载并安装最新版本。下载链接:https://github.com/go-gitea/gitea/releases 参考链接...
Github flow Gitlab flow 都采用"功能驱动式开发"(Feature-driven development,简称FDD)。 它指的是,需求是开发的起点,先有需求再有功能分支(feature branch)或者补丁分支(hotfix branch)。完成开发后,该分支就合并到主分支,然后被删除。 首先,项目存在两个长期分支。