书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 19931 个相关结果.
  • GitHub Workflow

    856 2019-11-10 《Vitess Document》
    Remotes Topic Branches Committing your work Sending Pull Requests Addressing Changes GitHub Workflow If you are new to Git and GitHub, we recommend to read this page. Otherw...
  • 11. Aliases

    Aliases Goals Common Aliases .gitconfig Define the hist alias in your .gitconfig file Type and Dump Shell Aliases (Optional) .profile Aliases Goals Learn how to s...
  • 6.2 解决冲突

    人生不如意之事十之八九,合并分支往往也不是一帆风顺的。 准备新的feature1 分支,继续我们的新分支开发: $ git checkout - b feature1 Switched to a new branch 'feature1' 修改readme.txt最后一行,改为: Creating a new branch...
  • 4.3 管理修改

    现在,假定你已经完全掌握了暂存区的概念。下面,我们要讨论的就是,为什么Git比其他版本控制系统设计得优秀,因为Git跟踪并管理的是修改,而非文件。 你会问,什么是修改?比如你新增了一行,这就是一个修改,删除了一行,也是一个修改,更改了某些字符,也是一个修改,删了一些又加了一些,也是一个修改,甚至创建一个新文件,也算一个修改。 为什么说Git管理的是修改,...
  • 4.4 配置服务器

    4.4 服务器上的 Git - 配置服务器 配置服务器 4.4 服务器上的 Git - 配置服务器 配置服务器 我们来看看如何配置服务器端的 SSH 访问。本例中,我们将使用 authorized_keys 方法来对用户进行认证。同时我们假设你使用的操作系统是标准的 Linux 发行版,比如 Ubuntu。首先,创建一个操作系统用户 git ...
  • Matrix Generator

    Matrix Generator Example: Git Directory generator + Cluster generator Using Parameters from one child generator in another child generator Restrictions Matrix Generator The M...
  • Guides

    430 2020-11-23 《Git Reference》
    gitattributes Command-line interface conventions Everyday Git Frequently Asked Questions (FAQ) Glossary Hooks gitignore gitmodules Revisions Submodules Tutorial Workflow...
  • giteveryday

    1510 2019-04-02 《Git 中文参考》
    giteveryday 名称 概要 描述 个人开发者(独立) 例子 个人开发者(参与者) 例子 积分 例子 存储库管理 例子 GIT giteveryday 原文: https://git-scm.com/docs/giteveryday 名称 giteveryday - Everyday Git的一组有用的最小...
  • Integration

    Kubespray (kubespray) in own ansible playbooks repo Contributing Kubespray (kubespray) in own ansible playbooks repo Fork kubespray repo to your personal/organisation accou...
  • 配置别名

    配置别名 配置文件 小结 读后有收获可以支付宝请作者喝咖啡: 配置别名 有没有经常敲错命令?比如git status ?status 这个单词真心不好记。 如果敲git st 就表示git status 那就简单多了,当然这种偷懒的办法我们是极力赞成的。 我们只需要敲一行命令,告诉Git,以后st 就表示status : $ git co...