Any update? Having just gone through a new build, I can only imagine what trouble this would be for somebody new to this distinction. Would it be worthwhile to make amalgamated the default branch?
--
You received this message because you are subscribed to the Google Groups "Programming Nu" group.
To view this discussion on the web visit https://groups.google.com/d/msg/programming-nu/-/VxjgqM0XH4cJ.
To post to this group, send email to program...@googlegroups.com.
To unsubscribe from this group, send email to programming-n...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/programming-nu?hl=en.
It should be basically the easiest ever —
git checkout master
git branch gnustep #create a branch from the current state of master
git pull . amalgamated #merge amalgamated back into master
git push origin gnustep #push the branch to the internet
(then optionally, 'git branch -d amalgamated' to delete that branch)
Very best
Luke
Thanks! I followed Luke's steps and made a new "gnustep" branch for
the old "master".
Now "master" is the lion->amalgamated branch and a fresh clone should
build easily with the latest Lion (10.7.3) and developer tools (Xcode
4.3.1). The quick changes that I made to the clang path will break
builds for older Xcode releases. I think merging Clay's changes (on
amalgamated) will fix that but don't have a quick way to confirm that.
Tim