在使用 gitflow 做版本控制系統,發現gitflow的時候只能指定一個master/develop,如果要多分支使用要如何操作呢?那麼來看看我是如何給gitflow加料的。
公司都是git作為版本控制,公司一些項目組在用gitflow,但是我們組沒有強制, 但是我上月出了一次事故,總結就是分支管理問題,所以開始強迫自己使用gitflow, 以前的項目是一個master和一個develop,自己checkout一個分支,然後merge(不理解的可以看看a-successful-git-branching-model).
問題出現了: 項目有幾個主分支和開發分支,比如master_sina, master_qq. master_buzz ,而gitflow的時候只能指定一個master/develop, 這樣你start一個feature/hotfix之前就要去.git/config裡面修改 [gitflow “branch”]項的相關主分支和開發分支,so不方便。看了下源碼,給gitflow加點料
添加功能
當你打開了feature/hotfix分支,但是你不想要它了(當然你可以直接git branch -D xx),使用git flow hotfix/feature delete ,自動幫你刪除這個分支,以便你新建其他分支(git flow只容許你一次存在一個hotfix/feature分支)
你想使用gitflow刪除其它存在分支嘛?不需要 git branch -D ,你還可以git flow hotfix/feature delete XX
比如我在init的時候指定了master為master_sina, 而當我想創建master_qq的hotfix,我只需要在start的是否給它取名字是’qq_‘開頭的即可,要是有其它的需要你可以直接在源碼裡面添加對應的內容
例子 git-flow-hotfix 我主要標記我修改的部分
代碼如下
復制代碼
init() {
require_git_repo
require_gitflow_initialized
gitflow_load_settings
VERSION_PREFIX=$(eval "echo `git config --get gitflow.prefix.versiontag`")
PREFIX=$(git config --get gitflow.prefix.hotfix)
}
# 增加help的選項說明
usage() {
echo "usage: git flow hotfix [list] [-v]"
echo " git flow hotfix start [-F] <version> [<base>]"
echo " git flow hotfix finish [-Fsumpk] <version>"
echo " git flow hotfix publish <version>"
echo " git flow hotfix delete [branch]"
echo " git flow hotfix track <version>"
}
cmd_default() {
cmd_list "$@"
}
cmd_list() {
DEFINE_boolean verbose false 'verbose (more) output' v
parse_args "$@"
local hotfix_branches
local current_branch
local short_names
hotfix_branches=$(echo "$(git_local_branches)" | grep "^$PREFIX")
if [ -z "$hotfix_branches" ]; then
warn "No hotfix branches exist."
warn ""
warn "You can start a new hotfix branch:"
warn ""
warn " git flow hotfix start <version> [<base>]"
warn ""
exit 0
fi
current_branch=$(git branch --no-color | grep '^* ' | grep -v 'no branch' | sed 's/^* //g')
short_names=$(echo "$hotfix_branches" | sed "s ^$PREFIX g")
# determine column width first
local width=0
local branch
for branch in $short_names; do
local len=${#branch}
width=$(max $width $len)
done
width=$(($width+3))
local branch
for branch in $short_names; do
local fullname=$PREFIX$branch
local base=$(git merge-base "$fullname" "$MASTER_BRANCH")
local master_sha=$(git rev-parse "$MASTER_BRANCH")
local branch_sha=$(git rev-parse "$fullname")
if [ "$fullname" = "$current_branch" ]; then
printf "* "
else
printf " "
fi
if flag verbose; then
printf "%-${width}s" "$branch"
if [ "$branch_sha" = "$master_sha" ]; then
printf "(no commits yet)"
else
local tagname=$(git name-rev --tags --no-undefined --name-only "$base")
local nicename
if [ "$tagname" != "" ]; then
nicename=$tagname
else
nicename=$(git rev-parse --short "$base")
fi
&nbs