我想同时在不同的分支上进行一次提交,因为在我的项目中,我为不同的客户提供了不同的分支。
说,我在分支A上做了一个新的功能提交。我是否也可以同时在分支B,分支C和D上进行此提交?这有什么捷径命令吗?检查一个分支是非常麻烦的,并且每次都会提交提交,如果在许多分支上需要提交,那对我来说将是一场噩梦。
此操作的任何简单bash脚本?
那里有一个similar question。但是变基不是我想要的。
答案 0 :(得分:47)
樱桃挑选功能将完成这项工作,并且只会应用最后一次提交:
考虑分支A,B
git checkout A
git commit -m "Fixed the bug x"
git checkout B
git cherry-pick A
希望这有帮助!
答案 1 :(得分:14)
由于我的问题没有典型的答案,我编写了一个简单的脚本来自动执行此过程。请随意评论此代码。
#!/bin/bash
BRANCHES=(
master_branch
develop_branch
testing_branch
)
ORIGINALBRANCH=`git status | head -n1 | cut -c13-`
git commit -m $1
CHERRYCOMMIT=`git log -n1 | head -n1 | cut -c8-`
for BRANCH in "${BRANCHES[@]}";
do
git stash;
git checkout $BRANCH;
git cherry-pick $CHERRYCOMMIT;
git checkout $ORIGINALBRANCH;
git stash pop;
done
答案 2 :(得分:9)
您可能需要查看以下内容:git stash
您的更改,git commit
,git checkout
其他分支,git stash apply
,git commit
等。< / p>
请参阅man pages。
答案 3 :(得分:2)
答案 4 :(得分:1)
也许这会对某些人有所帮助,
我使用上面的&#34; Kit Ho&#34;方法并将其作为别名添加到.gitconfig。
; commitall commits to the current branch as well the all the branches mentionedin BRANCHES array var as shown below.
commitall = "!f() { \
BRANCHES=( \
branches1 \
branches2 \
); \
usage() \
{ \
echo \"Usage: git commitall -m 'JIRA: BRANCHNAME:<comment to check in>'\"; \
exit 1; \
}; \
OPTIND=1; \
DFNs=\"\"; \
while getopts \"h:m:\" opt; \
do \
case \"$opt\" in \
h) \
usage; \
;; \
m) export Comment=$OPTARG; \
;; \
esac; \
done; \
ORIGINALBRANCH=`git symbolic-ref HEAD|cut -d/ -f3- `; \
echo \"Current branch is $ORIGINALBRANCH \" ; \
echo $Comment | grep \"^JIRA: $ORIGINALBRANCH:\" > /dev/null 2>&1 ; \
if [ $? -ne 0 ]; then \
usage; \
fi; \
LOGMSG=`git log -1 --pretty=%B --grep=\"JIRA: $ORIGINALBRANCH:\" `; \
MSG='commit first time in this branch is a success' ; \
if [ \"$LOGMSG\" == \"\" ]; then \
git commit -m \"$Comment\"; \
else \
git commit -a --amend -C HEAD; \
MSG='commit with amend succeeded' ; \
fi; \
if [ $? -ne 0 ]; then \
echo \"git commit failed!\"; \
exit 1; \
else \
echo \"$MSG\" ; \
fi; \
CHERRYCOMMIT=`git log -n1 | head -n 1 | cut -c8- ` ; \
if [ \"$CHERRYCOMMIT\" == \"\" ]; then \
echo \"'git log -n1 | head -n 1 | cut -c8-' no commits for this branch\"; \
exit 1; \
fi; \
echo \"found this commit -> $CHERRYCOMMIT for current branch\"; \
stashes=`git stash list | grep \"WIP on $ORIGINALBRANCH\" ` ; \
for BRANCH in \"${BRANCHES[@]}\"; do \
if [ \"$stashes\" ]; then \
git stash; \
fi;\
git checkout $BRANCH; \
if [ $? -ne 0 ]; then \
echo \"git checkout $BRANCH failed!\"; \
exit 1; \
fi; \
git cherry-pick $CHERRYCOMMIT; \
git checkout $ORIGINALBRANCH; \
if [ \"$stashes\" ]; then \
git stash pop; \
fi; \
done; \
}; \
f"
答案 5 :(得分:0)
不,我认为你不能这样做。你最好的选择是提交你的一个分支(或一个主分支),然后将提交一个接一个地合并到其他分支,或者将提交选择到每个其他分支。
答案 6 :(得分:0)
我认为没有办法解决这个问题。也许你需要为它编写一个bash脚本,或者为不同的分支创建一个不同的repo。
答案 7 :(得分:0)
你也可以使用Python做好自动化:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Populate specified or latest commit across all branches in the repository.
"""
import os
import re
import sys
import sh
git = sh.git.bake(_cwd=os.curdir)
if len(sys.argv) > 1:
if '-h' in sys.argv or '--help' in sys.argv:
print('Usage: git-populate.py [commit] [-h|--help]')
sys.exit(0)
else:
commit = sys.argv[1]
else:
# By default choose latest commit.
git_log = git('--no-pager', 'log', '-n', '1', '--no-color').stdout
commit = re.search(r'[a-f0-9]{40}', git_log).group()
print('Commit to be populated: {0:.6s}'.format(commit))
git_branch = git.branch('-a', '--no-color').stdout
source_branch = re.search(r'\*\s(\w+)$', git_branch, re.MULTILINE).group(1)
print('Source branch: {0}'.format(source_branch))
branches = re.findall(r'remotes/\w+/([\w-]+)$', git_branch, re.MULTILINE)
# Exclude current branch from target branches.
branches = [i for i in branches if i != source_branch]
print('Target branches: {0}'.format(branches))
print('Stashing local changes')
git_stash = git.stash().stdout
for branch in branches:
print('Ading commit {0:.6s} to branch {1}'.format(commit, branch))
git.checkout(branch)
try:
result = git('cherry-pick', commit)
except sh.ErrorReturnCode_1:
# Ignore diplicate cherry pick and discard changes.
git.reset()
git.checkout(source_branch)
print('Return to branch {0}'.format(source_branch))
if not git_stash.startswith('No local changes to save'):
print('Restoring local changes')
git.stash.pop()
答案 8 :(得分:0)
这可能取决于你如何推动你的提交。我的意思是你总是有机会用一个git push
命令进入多个分支。
执行以下.git/config
设置,以确保始终将master
分支推送到foobar
分支。
[remote "origin"]
url = git@github.com:mgerhardy/example.git
fetch = +refs/heads/*:refs/remotes/origin/*
push = refs/heads/master:refs/heads/master
push = refs/heads/master:refs/heads/foobar
但问题可能在于,如果这两个分支分歧,你就无法推动它们。您仍然可以重新组织客户端检测基于您正在构建的分支的代码。这样你就可以维护几十个客户端并始终保持所有分支同步。
答案 9 :(得分:0)
要同时推送到多个分支,只需安装并配置SourceTree,然后选择“推送”以及您希望部署到的分支。