书栈网 · BookStack 本次搜索耗时 0.048 秒,为您找到 19931 个相关结果.
  • 7.11 子模块

    7.11 Git 工具 - 子模块 子模块 开始使用子模块 克隆含有子模块的项目 在包含子模块的项目上工作 拉取上游修改 在子模块上工作 发布子模块改动 合并子模块改动 子模块技巧 子模块遍历 有用的别名 子模块的问题 7.11 Git 工具 - 子模块 子模块 有种情况我们经常会遇到:某个工作中的项目需要包含并使用另一个...
  • branch

    371 2020-11-23 《Git Reference》
    NAME SYNOPSIS DESCRIPTION OPTIONS CONFIGURATION EXAMPLES NOTES SEE ALSO GIT NAME git-branch - List, create, or delete branches SYNOPSIS git branch [-- color [=< whe...
  • 6.1 创建于合并分支

    在版本回退 里,你已经知道,每次提交,Git都把它们串成一条时间线,这条时间线就是一个分支。截止到目前,只有一条时间线,在Git里,这个分支叫主分支,即master 分支。HEAD 严格来说不是指向提交,而是指向master ,master 才是指向提交的,所以,HEAD 指向的就是当前分支。 一开始的时候,master 分支是一条线,Git用master...
  • Releases

    Releases Tagging a new release Patch releases Releases Releasing a new version of Dex can be done by one of the core maintainers with push access to the git repository . It’s ...
  • symbolic-ref

    382 2020-11-23 《Git Reference》
    NAME SYNOPSIS DESCRIPTION OPTIONS NOTES GIT NAME git-symbolic-ref - Read, modify and delete symbolic refs SYNOPSIS git symbolic - ref [- m <reason> ] <name> <ref...
  • Mirror Resources

    Mirror Resources About mirror resources Image Registry Platforms Repo Build logic How to use the images? Base on the branch name Base on the branch name and the specific commi...
  • 20. Moving Files

    Moving Files Goals Move the hello.rb file into a lib directory. Execute: Output: Another way of moving files Commit the new directory Execute: Moving Files Goals L...
  • log

    NAME SYNOPSIS DESCRIPTION OPTIONS Commit Limiting History Simplification Commit Ordering Object Traversal Commit Formatting Diff Formatting PRETTY FORMATS COMMON DIFF OP...
  • 7.1 创建标签

    在Git中打标签非常简单,首先,切换到需要打标签的分支上: $ git branch * dev master $ git checkout master Switched to branch 'master' 然后,敲命令git tag <name> 就可以打一个新标签: $ git tag v1 . 0 ...
  • rev-list

    NAME SYNOPSIS DESCRIPTION OPTIONS Commit Limiting History Simplification Bisection Helpers Commit Ordering Object Traversal Commit Formatting PRETTY FORMATS GIT NAME...