书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 15863 个相关结果.
  • Overview

    Contribution overview Issues Issue types Before submitting Pull Requests Use work-in-progress PRs for early feedback Use of Third-party code Developer Certificate of Origin:...
  • Seata BASE transaction

    Seata BASE transaction Init Seata Engine Transaction Begin Execute actual sharding SQL Commit or Rollback Seata BASE transaction When integrating Seata AT transaction, we ne...
  • 提交事务

    使用 COMMIT 语句可以提交事务。 在提交事务(COMMIT )之前: 您的修改只对当前会话可见,对其他数据库会话均不可见。 您的修改没有持久化,您可以通过 ROLLBACK 语句撤销修改。 在提交事务(COMMIT )之后: 您的修改对所有数据库会话可见。 您的修改持久化成功,不能通过 ROLLBACK 语句回滚修改。 ...
  • Data Model

    Data Model Repo Branch Commit FS Block Data Model Seafile internally uses a data model similar to GIT’s. It consists of Repo , Branch , Commit , FS , and Block . Repo A...
  • Blame File View

    Blame File View Ignore commits in the blame view Bypassing .git-blame-ignore-revs in the blame view Blame File View Gitea supports viewing the line-by-line revision history f...
  • tag

    315 2020-11-23 《Git Reference》
    NAME SYNOPSIS DESCRIPTION OPTIONS CONFIGURATION DISCUSSION On Re-tagging On Automatic following On Backdating Tags DATE FORMATS NOTES SEE ALSO GIT NAME git-tag - Cr...
  • 贡献指南

    贡献指南 为 Rainbond 做出贡献 CODE_OF_CONDUCT 参与其中 Git Commit 规范 Type Scope(可选项) Subject 示例 撰写合格 Commit message 的工具 安装 使用 Pull Request 规范 为 Rainbond 做出贡献你将得到: 贡献指南 为 Rainbo...
  • Managing build output

    Managing build output Build output Output image environment variables Output image labels Managing build output Use the following sections for an overview of and instructions...
  • 创建版本库

    1022 2022-09-23 《Git速查手册》
    结论 说明 步骤 结论 初始化本地仓库: git init 添加文件到仓库: # 添加单个文件 git add <file> # 添加多个文件 git add file1 file2 ... # 添加全部已修改文件 git add . 提交文件到仓库: git commit - m "说明" ...
  • 分支管理策略

    分支管理策略 分支策略 小结 读后有收获可以支付宝请作者喝咖啡: 分支管理策略 通常,合并分支时,如果可能,Git会用Fast forward 模式,但这种模式下,删除分支后,会丢掉分支信息。 如果要强制禁用Fast forward 模式,Git就会在merge时生成一个新的commit,这样,从分支历史上就可以看出分支信息。 下面我们实战...