书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 19931 个相关结果.
  • 维护及数据恢复

    维护及数据恢复 维护 数据恢复 移除对象 维护及数据恢复 你时不时的需要进行一些清理工作 ── 如减小一个仓库的大小,清理导入的库,或是恢复丢失的数据。本节将描述这类使用场景。 维护 Git 会不定时地自动运行称为 "auto gc" 的命令。大部分情况下该命令什么都不处理。不过要是存在太多松散对象 (loose object, 不在 p...
  • 版本回退

    1069 2019-12-09 《Git速查手册》
    结论 说明 步骤 结论 git工作区状态: git status 查看全部修改内容: git diff 查看指定文件修改内容: git diff <file> 回退到指定版本 git reset -- hard commit_id 回退到上一个版本 git reset -- hard HEAD...
  • 如何贡献

    如何提交代码和文档 Step 1: 通过 GitHub Fork Step 2: 将分支克隆到本地 定义预提交 hook Step 3: 分支 Step 4: 开发 编辑代码 运行独立模式 运行测试 Step 5: 保持分支同步 Step 6: Commit Step 7: Push Step 8: 创建 pull request St...
  • 撤销修改

    撤销修改 小结 读后有收获可以支付宝请作者喝咖啡: 撤销修改 自然,你是不会犯错的。不过现在是凌晨两点,你正在赶一份工作报告,你在readme.txt 中添加了一行: $ cat readme . txt Git is a distributed version control system . Git is free so...
  • 创建与合并分支

    627 2022-09-23 《Git速查手册》
    结论 说明 结论 查看分支 git branch 创建分支 git branch <name> 切换分支 git checkout <name> git switch <name> # switch是2.23版本新增命令 创建并切换到该分支 git checkout - b <name> git ...
  • Using GitOps with Linkerd with Argo CD

    Using GitOps with Linkerd with Argo CD Set up the repositories Deploy Argo CD Configure project access and permissions Deploy the applications Deploy cert-manager Deploy Sealed...
  • 10.5.1. VCS 命令的比较

    10.5.1. VCS 命令的比较 10.5.1. VCS 命令的比较 这里有原生 VCS 命令的简单比较来提供大图概要。典型的命令序列需要选项和参数。 表 10.12. 本地 VCS 命令比较 Git CVS Subversion 功能 git init cvs init svn create 创建(本地)存储库 - cvs l...
  • 3. Create a Project

    Create a Project Goals Create a “Hello, World” program Execute: hello.rb Create the Repository Execute: Output: Add the program to the repository Execute: Output: ...
  • bundle

    362 2020-11-23 《Git Reference》
    NAME SYNOPSIS DESCRIPTION OPTIONS SPECIFYING REFERENCES EXAMPLES GIT NAME git-bundle - Move objects and refs by archive SYNOPSIS git bundle create [- q | -- quiet ...
  • Github提交PR

    Github提交PR Github 远程仓库 Git 贡献指南 Github 提交 PR 合并 PR 拒绝 PR Github提交PR 本文将引导您通过 Git 贡献 RocketMQ Github 远程仓库 本小节作为前置知识,简要说明使用 Git 贡献 RocketMQ 原因,有相关基础的同学可以自行跳过 首先您需要自行了解 Git...