>> Could just deleting and recreating the branch work? > >That's what I'm trying now.
To be very clear, I'm going to try making a new orphan branch, and copying over all of the changesets from the asf-site tree. So something like: git checkout --orphan newTree git cherry-pick <commit 1 from asf-site branch> ... git cherry-pick <commit n from asf-site branch> git checkout asf-site git reset --hard newTree git push -f origin asf-site This way, we can preserve commit history. On Thu, Mar 24, 2016 at 4:17 PM, William Marshall <[email protected]> wrote: > > Could just deleting and recreating the branch work? > > That's what I'm trying now. > > On Thu, Mar 24, 2016 at 4:16 PM, Dan Debrunner <[email protected]> wrote: > >> Does the asf-site branch need to be recreated each time? >> >> Doesn't it first have to be created with some special flag that means no >> history? >> >> Could just deleting and recreating the branch work? >> >> Dan. >> > >
