随笔分类 - 版本控制
摘要:原文链接 准备 Step 1. Create a team and add a teammate Step 2. Create a repository with some content 应用 Clone and make a change on a new branch Step 1. Clon
阅读全文
摘要:docker:负责image、container的管理 kubernetes负责service、deployment、pods、ingress的管理 docker history docker images docker image history
阅读全文
摘要:A successful Git branching model In this post I present the development model that I’ve introduced for some of my projects (both at work and private)
阅读全文
摘要:How to use a scalable Git branching model called Gitflow git视频合集列表 github大本营 gitflow中文备忘清单 关于 git-flow 是一个 git 扩展集,按 Vincent Driessen 的分支模型提供高层次的库操作。
阅读全文
摘要:Using git-flow to automate your git branching workflow Vincent Driessen’s branching model is a git branching and release management strategy that help
阅读全文
摘要:Introducing GitFlow What Is GitFlow? GitFlow is a branching model for Git, created by Vincent Driessen. It has attracted a lot of attention because it
阅读全文
摘要:Git-Flow | How it’s used and why you should What is Git-Flow about? Git-Flow is a workflow for using Git in a way that makes continuous software devel
阅读全文
摘要:Jenkins 是一个开源项目,提供了一种易于使用的持续集成系统,使开发者从繁杂的集成中解脱出来,专注于更为重要的业务逻辑实现上。同时 Jenkins 能实施监控集成中存在的错误,提供详细的日志文件和提醒功能,还能用图表的形式形象地展示项目构建的趋势和稳定性 Jenkins 还提供了非常丰富的插件支
阅读全文
摘要:https://git-scm.com/book/zh/v2 # 克隆git项目 git clone http://www.kernel.org/pub/scm/git/git.git # 查看所有分支 git branch -a # 检出所需分支 git checkout -b dev origi
阅读全文