need to connect up history
This commit is contained in:
parent
6f8f0c1c6b
commit
adf8b2ec34
|
@ -103,7 +103,7 @@ wrapper args propellordir propellorbin = do
|
||||||
-- in lots of merge conflicts, since git cannot find a common parent
|
-- in lots of merge conflicts, since git cannot find a common parent
|
||||||
-- commit.
|
-- commit.
|
||||||
--
|
--
|
||||||
-- Instead, the upstream/master branch is created by taking the previous
|
-- Instead, the upstream/master branch is created by taking the
|
||||||
-- upstream/master branch (which must be an old version of propellor,
|
-- upstream/master branch (which must be an old version of propellor,
|
||||||
-- as distributed), and diffing from it to the current origin/master,
|
-- as distributed), and diffing from it to the current origin/master,
|
||||||
-- and committing the result. This is done in a temporary clone of the
|
-- and committing the result. This is done in a temporary clone of the
|
||||||
|
@ -126,7 +126,8 @@ setupupstreammaster newref propellordir = do
|
||||||
git ["fetch", distrepo, "--quiet"]
|
git ["fetch", distrepo, "--quiet"]
|
||||||
git ["reset", "--hard", oldref, "--quiet"]
|
git ["reset", "--hard", oldref, "--quiet"]
|
||||||
run "sh" ["-c", "git diff .." ++ newref ++ " | git apply --whitespace=nowarn"]
|
run "sh" ["-c", "git diff .." ++ newref ++ " | git apply --whitespace=nowarn"]
|
||||||
git ["commit", "-a", "-m", "merging upstream changes", "--quiet"]
|
git ["commit", "-a", "-m", "merging upstream into master", "--quiet"]
|
||||||
|
git ["merge", newref, "--quiet", "-m", "merging upstream release"]
|
||||||
|
|
||||||
fetchUpstreamBranch propellordir tmprepo
|
fetchUpstreamBranch propellordir tmprepo
|
||||||
cleantmprepo
|
cleantmprepo
|
||||||
|
|
Loading…
Reference in New Issue