Tag: tools

Subversion blame

While reading about git I found a feature of Subversion that I never used. It’s called svn blame and will show each line of a file with information about who last changed that line and in what revision. Running svn blame vendor/plugins/project_scores_plugin/init.rb for one of my Redmine plugins shows this: 2 edavis # Redmine sample …

Read more

Quick guide to setting up a Debian apt repository

This is my quick guide to setting up a Debian apt repository: Install the needed software apt-get install apt-utils Create the directory structure under the webroot mkdir -p /var/www/apt/sarge Add the created .deb files to the archive cp mypackage-1.0.deb /var/www/apt/sarge Update the package list to reflect the new package. cd /var/www/apt apt-ftparchive packages sarge > …

Read more