Subversion: Merging a Branch into Trunk
Posted by Ryan Baxter Wed, 26 Aug 2009 01:21:00 GMT
I can never remember how to merge a Subversion branch into trunk. So for future reference, here is how it’s done.
First, get a working copy of the head revision of trunk.
svn checkout svn://svnserver/project/trunk projectNext, merge the branch with your working copy.
svn merge svn://svnserver/project/trunk svn://svnserver/project/branches/branch projectFinally, commit the results of the merge.
cd project
svn commit -m "Merging branch X.X.X into trunk."You can also specify a revision number in your merge.
svn merge svn://svnserver/project/trunk@223 svn://svnserver/project/branches/branch@223 projectThat’s it.
- Posted in Code Snippets
- Meta 3 comments, permalink, rss, atom
Installing RMagick on Ubuntu*
Posted by Ryan Baxter Thu, 20 Aug 2009 17:00:00 GMT
Because I always forget how…
sudo apt-get install libmagickwand-dev
sudo gem install rmagickand you reference it in code like so:
# Don't forget the capital "RM"!
require 'RMagick'
include RMagick*I’ve only done this using Ubuntu 9.04. Your mileage may vary.
- Posted in Code Snippets
- Meta no comments, permalink, rss, atom
Where is _why?
Posted by Ryan Baxter Thu, 20 Aug 2009 13:20:00 GMT
Why the lucky stiff speaking at the Carnegie Mellon Art and Code Symposium. If the rumors are true, you’ll be missed.
ART && CODE Symposium: Hackety Hack, why the lucky stiff from STUDIO for Creative Inquiry on Vimeo.
- Posted in Expect the Unexpected
- Meta no comments, permalink, rss, atom

