`

cruisecontrolrb 支持 git branch

阅读更多
引用


./cruise add --help
usage: add [project-name] -r [repository] -s [svn|git|hg|bzr]

  -r, --repository repository      Location of the source control repository for the project (eg. svn://rubyforge.org/var/svn/cruisecontrolrb)
  -s source_control                Specify the source control manager to use (default: subversion)
      --source-control
  -b, --branch branch              Specify a source control branch to use (Git, Mercurial)
      --username username          Specify a username for source control
      --password password          Specify a password for source control
  -t, --trace                      Print out exception stack traces

  -u, --url url                    [deprecated, use -r|--repository instead] URL of the source control repository


例子:
./cruise add prj_dev -r prj -b <branch_name> -s git -u git+ssh://git@git.***.com/prj
分享到:
评论

相关推荐

    tmux-git, 在Tmux状态栏中,显示当前 git branch的脚本.zip

    tmux-git, 在Tmux状态栏中,显示当前 git branch的脚本 Tmux中的 git-branch tmux-git 在 tmux 状态栏中显示当前目录的git repo 信息,如当前分支。dirtiness 。存储等等。概述在你的Linux终端提示符( 就像我在这里...

    git branch基本使用

    讲述了git分支的使用,创建分支,修改分支,删除分支,克隆分支

    git-directory-deploy, 将目录部署为 git branch.zip

    git-directory-deploy, 将目录部署为 git branch 这是用于部署文件到 git branch的脚本,例如在使用文书构建单个页面应用程序和部署到 GitHub页面的脚本。 不像 git方法,它不要求生成的文件被提交到源分支。 它在...

    git-when-merged, 确定特定提交合并到 git branch的时间.zip

    git-when-merged, 确定特定提交合并到 git branch的时间 git when-mergedgit when-merged 帮助你了解什么时候以及为何将提交合并到分支中。如果使用标准的Git工作流,则为你正在处理的每个特性创建一个特性分支。 当...

    Jenkins-Plugin-GitBranch-Column:Jenkins 插件,用于在 listvierw 中添加 git 分支名称

    综上所述,`Jenkins-Plugin-GitBranch-Column` 插件是一个强大的工具,它增强了 Jenkins 对 Git 分支管理的支持,提升了 CI/CD 流程的效率。通过合理的配置和与其他插件的协同,能进一步优化团队的工作流程。

    git指令快速查询-代码管理工具

    git branch 查看本地所有分支 git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支 git branch -r 查看远程所有分支 git commit -am "init" 提交并且加注释 git remote add origin git@192....

    git-branch-select:用于交互式分支列表,选择和签出的Git插件

    git-branch-select 存储库中的交互式(本地)分支选择。 通过安装 $ npm install --global git-branch-select 用法 $ git branch-select [options] [search] # Alias it in your .gitconfig for added convenience,...

    Git 详细教程.rtf

    Git 常用命令 4.1 初始化仓库 git init # 在当前目录下初始化一个新的 Git 仓库 4.2 查看仓库状态 git status # 查看当前仓库的状态 4.3 文件操作 将文件添加到暂存区 ... git branch -d 分支名

    git命令git命令git命令git命令

    14. 删除远程分支:`git push origin --delete [branch-name]` 或 `git branch -dr [remote/branch]` ### 标签 标签用于标记特定的commit,便于后续引用: 1. 列出所有标签:`git tag` 2. 创建新标签:`git tag ...

    git-branch.md

    在Learn Git Branch上学习远程仓库的相关知识

    git-branch-name:获取目录的git branchName

    通过nodejs获取目录的git branchName,支持git子模块 安装 npm install git-branch-name --save 用 var getGitBranchName = require ( 'git-branch-name' ) ; var dirPath = path . resolve ( __dirname , '../' ...

    git 应用大全

    - `git branch -d &lt;branch&gt;`:删除分支(仅当分支已经合并至其他分支时可用)。 - `git branch -D &lt;branch&gt;`:强制删除分支。 4. **远程仓库交互**: - `git remote add origin &lt;url&gt;`:添加远程仓库。 - `git ...

    linux系统安装git及git常用命令

    1 安装GIT 代码如下:$ sudo aptitude install git$ sudo aptitude install git-doc git-svn git-email git-gui gitk git软件包包含了大部分Git命令,是必装的软件包,第二行命令也是...(1)git branch 查看本地分支

    常用 Git 命令清单

    - 要删除远程分支,则需要使用`git push origin --delete [branch-name]`或者`git branch -dr [remote/branch]`。 以上这些命令组成了日常工作中常用的Git命令清单,通过这些命令可以进行绝大多数的代码管理操作。...

    Git Commands.pdf

    `-m` 或 `--move` 用于重命名分支,如 `git branch -m old-branch-name new-branch-name`,当前分支可以使用 `git branch -m new-branch-name` 重命名。 5. **git checkout**: `git checkout` 用于切换分支或恢复...

    gitbranch-demo

    本示例"gitbranch-demo"旨在演示Git分支的使用,特别是与Java开发相关的实践。 在Java开发中,使用Git分支能有效提高团队协作效率。以下将详细讲解Git分支及其相关操作: 1. **创建分支**: 使用`git branch ...

    《git基础知识》PPT课件.ppt

    3. 删除分支:git branch -d &lt;branch name&gt; 4. 切换分支:git checkout &lt;branch name&gt; 5. 创建新的分支:git checkout -b &lt;branch name&gt; 四、Git 常见使用场景 1. Git 和 Repo 的关系 2. 如何通过 Repo 下载 ...

    常用Git命令清单

    删除分支用 `git branch -d [branch-name]`,删除远程分支则使用 `git push origin --delete [branch-name]` 或者 `git branch -dr [remote/branch]`。 标签管理命令用于查看和创建标签。`git tag` 命令列出所有...

    常用 Git 命令清单 - 阮一峰的网络日志1

    10. `git branch --set-upstream [branch] [remote-branch]`:在当前分支与指定的远程分支之间建立追踪关系。 除了这些基本操作,还有其他如合并、解决冲突、查看历史、重置、拉取、推送等高级命令,它们构成了Git...

    git 视频教程

    git视频教程.4.1.Git 命令 - git branch.mp4 git视频教程.4.2.Git 命令 - git branch.mp4 git视频教程.4.3.Git 命令 - git branch.mp4 git视频教程.4.4.Git 命令 - git checkout.mp4 git视频教程.4.5.Git 命令 - git...

Global site tag (gtag.js) - Google Analytics