2010/08/05, 18:57
this is based on redmine-1.0.0
we need a more recent version of rails and rubygems than those shipped with lenny, so first add the backports-repository to your sources.list:
deb http://www.backports.org/debian lenny-backports main contrib non-free
then, update your package list:
and install the above mentioned packages Continue reading ‘installing redmine on debian/lenny using mod_passenger’ »
2010/02/15, 17:14
NOTE: this is just a copy of a blog-posting originally written by Amit Upadhyay. Since I found it really useful, I was rather disappointed to notice it has gone one day. Thankfully it still was in google’s cache, so I decided to make a copy. The rest of the article is a full-quote:
Continue reading ‘cached: git-SVN: Whys And Hows (by amitu)’ »
2010/02/08, 12:21
first, update to current HEAD:
then, look for the appropriate hash-name in git corresponding to the svn-revision:
git log | grep -C 5 "my-desired-revision" |
switching to the revision is done by a checkout:
git co f914a51a99f09aa609f253fb24a5adcfe0014461 |
then, do your work, e.g. compiling…
to switch back, clean up the changes caused by your work:
git clean -df
git reset --hard |
final step is to switch to the “master” branch, which contains the HEAD revision:
2010/01/15, 15:55
by far the best article I’ve read for somebody used to subversion (and tied to an SVN-repo) who wants to use git locally:
Git-SVN: Whys And Hows
thanks!!