Skip to content
Snippets Groups Projects
Commit 9476bf6f authored by totten's avatar totten
Browse files

givi - Fix handling of Drupal branches (filtered branch names) when running "resume"

parent 4842290b
No related branches found
No related tags found
No related merge requests found
......@@ -264,6 +264,7 @@ class Givi {
foreach ($this->repos as $repo => $relPath) {
$filteredBranch = $this->filterBranchName($repo, $branches[$repo]);
$filteredBaseBranch = $this->filterBranchName($repo, $baseBranch);
if ($filteredBranch == $filteredBaseBranch) {
$this->run($relPath, 'git', 'checkout', $filteredBranch);
}
......@@ -286,10 +287,12 @@ class Givi {
}
foreach ($this->repos as $repo => $relPath) {
$this->run($relPath, 'git', 'checkout', $branches[$repo]);
if ($branches[$repo] != $baseBranch && $this->rebase) {
// FIXME: assumes
list ($baseRemoteRepo, $baseRemoteBranch) = $this->parseBranchRepo($baseBranch);
$filteredBranch = $this->filterBranchName($repo, $branches[$repo]);
$filteredBaseBranch = $this->filterBranchName($repo, $baseBranch);
$this->run($relPath, 'git', 'checkout', $filteredBranch);
if ($filteredBranch != $filteredBaseBranch && $this->rebase) {
list ($baseRemoteRepo, $baseRemoteBranch) = $this->parseBranchRepo($filteredBaseBranch);
$this->run($relPath, 'git', 'pull', '--rebase', $baseRemoteRepo, $baseRemoteBranch);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment