diff --git commitlog/commitlog.module commitlog/commitlog.module
index 8d1bd77..615fef5 100644
--- commitlog/commitlog.module
+++ commitlog/commitlog.module
@@ -23,31 +23,60 @@ function commitlog_menu() {
     'access arguments' => array($view_access),
     'type' => MENU_SUGGESTED_ITEM,
   );
-  $items['commitlog/repository/%'] = array(
+  $items['commitlog/feed'] = array(
     'title' => 'Commit messages',
     'page callback' => 'commitlog_operations_page',
-    'page arguments' => array('repository', 2),
+    'page arguments' => array('global', 'feed'),
     'access arguments' => array($view_access),
     'type' => MENU_SUGGESTED_ITEM,
   );
-  $items['commitlog/author/%'] = array(
+  $items['commitlog/repository/%versioncontrol_repository'] = array(
     'title' => 'Commit messages',
     'page callback' => 'commitlog_operations_page',
-    'page arguments' => array('author', 2),
+    'page arguments' => array('repository', 'page', 2),
     'access arguments' => array($view_access),
     'type' => MENU_SUGGESTED_ITEM,
   );
-  $items['commitlog/commit/%/%'] = array(
+  $items['commitlog/repository/%versioncontrol_repository/feed'] = array(
+    'title' => 'Commit messages',
+    'page callback' => 'commitlog_operations_page',
+    'page arguments' => array('repository', 'feed', 2),
+    'access arguments' => array($view_access),
+    'type' => MENU_SUGGESTED_ITEM,
+  );
+  $items['commitlog/author/%user'] = array(
+    'title' => 'Commit messages',
+    'page callback' => 'commitlog_operations_page',
+    'page arguments' => array('author', 'page', 2),
+    'access arguments' => array($view_access),
+    'type' => MENU_SUGGESTED_ITEM,
+  );
+  $items['commitlog/author/%user/feed'] = array(
+    'title' => 'Commit messages',
+    'page callback' => 'commitlog_operations_page',
+    'page arguments' => array('author', 'feed', 2),
+    'access arguments' => array($view_access),
+    'type' => MENU_SUGGESTED_ITEM,
+  );
+  $items['commitlog/commit/%versioncontrol_repository/%'] = array(
     'title' => 'Commit',
     'page callback' => 'commitlog_operations_page',
-    'page arguments' => array('commit', 2, 3),
+    'page arguments' => array('commit', 'page', 2, 3),
     'access arguments' => array($view_access),
     'type' => MENU_SUGGESTED_ITEM,
   );
   $items['user/%user/track/code'] = array(
     'title' => 'Commits',
     'page callback' => 'commitlog_operations_page',
-    'page arguments' => array('user', 1),
+    'page arguments' => array('user', 'page', 1),
+    'access arguments' => array($view_access),
+    'type' => MENU_LOCAL_TASK,
+    'weight' => 2,
+  );
+  $items['user/%user/track/code/feed'] = array(
+    'title' => 'Commits',
+    'page callback' => 'commitlog_operations_page',
+    'page arguments' => array('user', 'feed', 1),
     'access arguments' => array($view_access),
     'type' => MENU_LOCAL_TASK,
     'weight' => 2,
@@ -97,53 +126,99 @@ function commitlog_ctools_plugin_directory($module, $plugin) {
 /**
  * Page callback for the 'commitlog' family of menu paths.
  *
- * @param $type
- *   What type of commit log listing we're creating.  Supported types are 'author' and 'repository'.
+ * @param $view_type
+ *   What type of commit log listing we're creating.  Supported types are 'author', 'commit', 'global', 'repository' and 'user'.
+ * @param $display_type
+ *   What type of display output we are creating. Supported types are 'page' and 'feed'.
  * @param $argument
  *   The argument with which to filter the view.  This is used as the first argument in the view in question.
  * @param $argument2
  *   Another argument to filter the view.  This is used as the second argument in the view in question.
  */
-function commitlog_operations_page($type = NULL, $argument = NULL, $argument2 = NULL) {
+function commitlog_operations_page($view_type = NULL, $display_type='page', $argument = NULL, $argument2 = NULL) {
   drupal_add_css(drupal_get_path('module', 'commitlog') . '/commitlog.css', 'module');
 
-  $view = '';
-  if ($type == 'author' && !is_null($argument)) {
-    $set = versioncontrol_get_views_set('user_commit_view');
-    $view = $set->getViewName();
-  }
-  else if ($type == 'user' && !is_null($argument)) {
-    drupal_set_title($argument->name);
-    $argument = $argument->uid;
+  $view_name = '';
+  if (($view_type == 'author' || $view_type == 'user') && !is_null($argument)) {
+    $account = $argument;
     $set = versioncontrol_get_views_set('user_commit_view');
-    $view = $set->getViewName();
+    $view_name = $set->getViewName();
+
+    if ($display_type == 'feed') {
+      $link = ($view_type == 'author') ? "commitlog/author/{$account->uid}" : "user/{$account->uid}/track/code/feed";
+      return versioncontrol_render_commitlog_view($view_name, 'feed', array($account->uid), $link);
+    }
+    return versioncontrol_render_commitlog_view($view_name, 'default', array($account->uid));
   }
-  else if ($type == 'repository' && !is_null($argument)) {
+  if ($view_type == 'repository' && !is_null($argument)) {
+    $repository = $argument;
     $set = versioncontrol_get_views_set('repository_commit_view');
-    $view = $set->getViewNameByEntity(versioncontrol_repository_load($argument));
+    $view_name = $set->getViewNameByEntity($repository);
+
+    if ($display_type == 'feed') {
+      return versioncontrol_render_commitlog_view($view_name, 'feed', array($repository->repo_id), "commitlog/repository/{$repository->repo_id}/feed");
+    }
+    return versioncontrol_render_commitlog_view($view_name, 'default', array($repository->repo_id));
   }
-  else if ($type == 'commit' && !is_null($argument) && !is_null($argument2)) {
+  if ($view_type == 'commit' && !is_null($argument) && !is_null($argument2)) {
+    $repository = $argument;
+    $revision = $argument2;
     $set = versioncontrol_get_views_set('individual_commit_view');
     $view_name = $set->getViewName();
-    $view = views_get_view($view_name);
+    return versioncontrol_render_commitlog_view($view_name, 'default', array($repository->repo_id, $revision));
+  }
+  // global by default
+  $set = versioncontrol_get_views_set('global_commit_view');
+  $view_name = $set->getViewName();
 
-    // Basic logic here borrowed from views_embed_view().
-    if (!$view || !$view->access('default')) {
-      return drupal_not_found();
-    }
-    $output = $view->preview('default', array($argument, $argument2));
+  if ($display_type == 'feed') {
+    return versioncontrol_render_commitlog_view($view_name, 'feed', array(), 'commitlog/feed');
+  }
+  return versioncontrol_render_commitlog_view($view_name, 'default');
+}
 
-    $title = $view->get_title();
-    if (!empty($title)) {
-      drupal_set_title($title);
+/**
+ * A convinience function to render a commitlog view.
+ * Basic logic here borrowed from views_embed_view().
+ *
+ * @param $view_name
+ *   Name of the view to render.
+ * @param $display_type
+ *   What type of display output we are creating. Supported types are 'default' and 'feed'.
+ * @param $arguments
+ *   The arguments needed for render the view.
+ * @param $path
+ *   The path to overwrite the view with.
+ * @return
+ *   On $display_type == 'default', the content to show.
+ *   On $display_type == 'feed', NULL, but handle RSS printning by hand.
+ */
+function versioncontrol_render_commitlog_view($view_name, $display_type, $arguments = array(), $path = '') {
+  $view = views_get_view($view_name);
+  if (!$view || !$view->access($display_type)) {
+    return drupal_not_found();
+  }
+
+  if (!empty($path)) {
+    $view->override_path = $path;
+    if ($display_type == 'feed') {
+      // Ugh, this line is needed, as override_path seems to not be enough
+      $view->display['feed']->display_options['path'] = $path;
     }
+  }
+
+  $output = $view->preview($display_type, $arguments);
 
-    return $output;
+  if ($display_type == 'feed') {
+    drupal_set_header('Content-Type: application/rss+xml; charset=utf-8');
+    print $output;
+    return;
   }
-  else {
-    $set = versioncontrol_get_views_set('global_commit_view');
-    $view = $set->getViewName();
+  // default
+  $title = $view->get_title();
+  if (!empty($title)) {
+    drupal_set_title($title);
   }
 
-  return views_embed_view($view, 'default', $argument);
+  return $output;
 }
diff --git commitlog/includes/views/default_views/commitlog_global_commits.view.php commitlog/includes/views/default_views/commitlog_global_commits.view.php
index 2f35567..cb2cf26 100644
--- commitlog/includes/views/default_views/commitlog_global_commits.view.php
+++ commitlog/includes/views/default_views/commitlog_global_commits.view.php
@@ -306,9 +306,38 @@ $handler->override_option('access', array(
 $handler->override_option('cache', array(
   'type' => 'none',
 ));
+$handler->override_option('title', 'VCS commit messages');
 $handler->override_option('use_pager', '1');
 $handler->override_option('style_plugin', 'list');
 $handler->override_option('style_options', array(
   'grouping' => '',
   'type' => 'ul',
 ));
+$handler = $view->new_display('feed', 'Feed', 'feed');
+$handler->override_option('style_plugin', 'rss');
+$handler->override_option('style_options', array(
+  'mission_description' => FALSE,
+  'description' => '',
+));
+$handler->override_option('row_plugin', 'versioncontrol_operations_rss');
+$handler->override_option('row_options', array(
+  'relationship' => 'none',
+  'single_operation_view' => 'commitlog_individual_commit',
+));
+$handler->override_option('path', 'versioncontrol/garbage/path');
+$handler->override_option('menu', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('tab_options', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('displays', array());
+$handler->override_option('sitename_title', FALSE);
diff --git commitlog/includes/views/default_views/commitlog_repository_commits.view.php commitlog/includes/views/default_views/commitlog_repository_commits.view.php
index 8a8fbae..5d7b498 100644
--- commitlog/includes/views/default_views/commitlog_repository_commits.view.php
+++ commitlog/includes/views/default_views/commitlog_repository_commits.view.php
@@ -307,7 +307,7 @@ $handler->override_option('arguments', array(
     'style_options' => array(),
     'wildcard' => 'all',
     'wildcard_substitution' => 'All',
-    'title' => '',
+    'title' => 'Repository %1',
     'breadcrumb' => '',
     'default_argument_type' => 'fixed',
     'default_argument' => '',
@@ -321,12 +321,6 @@ $handler->override_option('arguments', array(
     'validate_user_argument_type' => 'uid',
     'validate_user_roles' => array(
       '2' => 0,
-      '3' => 0,
-      '4' => 0,
-      '5' => 0,
-      '6' => 0,
-      '7' => 0,
-      '8' => 0,
     ),
     'relationship' => 'none',
     'default_options_div_prefix' => '',
@@ -334,23 +328,13 @@ $handler->override_option('arguments', array(
     'default_argument_user' => 0,
     'default_argument_php' => '',
     'validate_argument_node_type' => array(
-      'forum' => 0,
       'project_project' => 0,
-      'project_release' => 0,
-      'project_issue' => 0,
-      'book' => 0,
       'page' => 0,
       'story' => 0,
     ),
     'validate_argument_node_access' => 0,
     'validate_argument_nid_type' => 'nid',
-    'validate_argument_vocabulary' => array(
-      '1' => 0,
-      '5' => 0,
-      '3' => 0,
-      '2' => 0,
-      '4' => 0,
-    ),
+    'validate_argument_vocabulary' => array(),
     'validate_argument_type' => 'tid',
     'validate_argument_transform' => 0,
     'validate_user_restrict_roles' => 0,
@@ -369,3 +353,31 @@ $handler->override_option('cache', array(
 ));
 $handler->override_option('use_pager', '1');
 $handler->override_option('style_plugin', 'list');
+$handler = $view->new_display('feed', 'Feed', 'feed');
+$handler->override_option('style_plugin', 'rss');
+$handler->override_option('style_options', array(
+  'mission_description' => FALSE,
+  'description' => '',
+));
+$handler->override_option('row_plugin', 'versioncontrol_operations_rss');
+$handler->override_option('row_options', array(
+  'relationship' => 'none',
+  'single_operation_view' => 'commitlog_individual_commit',
+));
+$handler->override_option('path', 'versioncontrol/garbage/path');
+$handler->override_option('menu', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('tab_options', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('displays', array());
+$handler->override_option('sitename_title', 0);
diff --git commitlog/includes/views/default_views/commitlog_user_commits.view.php commitlog/includes/views/default_views/commitlog_user_commits.view.php
index 9db5ae6..62b9eca 100644
--- commitlog/includes/views/default_views/commitlog_user_commits.view.php
+++ commitlog/includes/views/default_views/commitlog_user_commits.view.php
@@ -307,7 +307,7 @@ $handler->override_option('arguments', array(
     'style_options' => array(),
     'wildcard' => 'all',
     'wildcard_substitution' => 'All',
-    'title' => '',
+    'title' => 'Commits by %1',
     'breadcrumb' => '',
     'default_argument_type' => 'fixed',
     'default_argument' => '',
@@ -321,12 +321,6 @@ $handler->override_option('arguments', array(
     'validate_user_argument_type' => 'uid',
     'validate_user_roles' => array(
       '2' => 0,
-      '3' => 0,
-      '4' => 0,
-      '5' => 0,
-      '6' => 0,
-      '7' => 0,
-      '8' => 0,
     ),
     'relationship' => 'none',
     'default_options_div_prefix' => '',
@@ -334,23 +328,13 @@ $handler->override_option('arguments', array(
     'default_argument_user' => 0,
     'default_argument_php' => '',
     'validate_argument_node_type' => array(
-      'forum' => 0,
       'project_project' => 0,
-      'project_release' => 0,
-      'project_issue' => 0,
-      'book' => 0,
       'page' => 0,
       'story' => 0,
     ),
     'validate_argument_node_access' => 0,
     'validate_argument_nid_type' => 'nid',
-    'validate_argument_vocabulary' => array(
-      '1' => 0,
-      '5' => 0,
-      '3' => 0,
-      '2' => 0,
-      '4' => 0,
-    ),
+    'validate_argument_vocabulary' => array(),
     'validate_argument_type' => 'tid',
     'validate_argument_transform' => 0,
     'validate_user_restrict_roles' => 0,
@@ -369,3 +353,27 @@ $handler->override_option('cache', array(
 ));
 $handler->override_option('use_pager', '1');
 $handler->override_option('style_plugin', 'list');
+$handler = $view->new_display('feed', 'Feed', 'feed');
+$handler->override_option('style_plugin', 'rss');
+$handler->override_option('style_options', array(
+  'mission_description' => FALSE,
+  'description' => '',
+));
+$handler->override_option('row_plugin', 'versioncontrol_operations_rss');
+$handler->override_option('path', 'versioncontrol/garbage/path');
+$handler->override_option('menu', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('tab_options', array(
+  'type' => 'none',
+  'title' => '',
+  'description' => '',
+  'weight' => 0,
+  'name' => 'navigation',
+));
+$handler->override_option('displays', array());
+$handler->override_option('sitename_title', FALSE);
diff --git includes/versioncontrol_theme.inc includes/versioncontrol_theme.inc
index f139b2e..047d8b6 100644
--- includes/versioncontrol_theme.inc
+++ includes/versioncontrol_theme.inc
@@ -38,3 +38,16 @@ function theme_versioncontrol_diffstat_removal() {
 function theme_versioncontrol_diffstat_no_op() {
   return '<span class="no-op"> </span>';
 }
+
+/**
+ * Generate an RSS item element for one versioncontrol operation.
+ */
+function theme_versioncontrol_view_row_operation_rss($view, $options, $row, $field_alias) {
+  $output = '<item>';
+  $output .= '<title>' . $row->title . '</title>';
+  $output .= '<link>' . $row->link . '</link>';
+  $output .= '<description>' . check_plain($row->description) . '</description>';
+  $output .= empty($row->elements) ? '' : format_xml_elements($row->elements);
+  $output .= '</item>';
+  return $output;
+}
diff --git includes/views/handlers/versioncontrol_handler_argument_repository_repo_id.inc includes/views/handlers/versioncontrol_handler_argument_repository_repo_id.inc
new file mode 100644
index 0000000..85db9f6
--- /dev/null
+++ includes/views/handlers/versioncontrol_handler_argument_repository_repo_id.inc
@@ -0,0 +1,22 @@
+<?php
+// $Id$
+/**
+ * @file
+ * Contains the repo_id argument handler.
+ */
+
+/**
+ * Specialized argument handler for repo_id argument.
+ */
+class versioncontrol_handler_argument_repository_repo_id extends views_handler_argument_numeric {
+  function title_query() {
+    $titles = array();
+    $placeholders = implode(', ', array_fill(0, sizeof($this->value), '%d'));
+
+    $result = db_query("SELECT vcr.name FROM {versioncontrol_repositories} vcr WHERE vcr.repo_id IN ($placeholders)", $this->value);
+    while ($repo = db_fetch_object($result)) {
+      $titles[] = check_plain($repo->name);
+    }
+    return $titles;
+  }
+}
diff --git includes/views/plugins/versioncontrol_plugin_row_operation_rss.inc includes/views/plugins/versioncontrol_plugin_row_operation_rss.inc
new file mode 100644
index 0000000..65f3322
--- /dev/null
+++ includes/views/plugins/versioncontrol_plugin_row_operation_rss.inc
@@ -0,0 +1,105 @@
+<?php
+// $Id$
+/**
+ * @file
+ * Contains the versioncontrol operation RSS row style plugin.
+ */
+
+/**
+ * Plugin which render the individual_commit_view on the resulting
+ * object and formats it as an RSS item.
+ */
+class versioncontrol_plugin_row_operation_rss extends views_plugin_row {
+  public $backends = NULL;
+  public $operations = array();
+  // Basic properties that let the row style follow relationships.
+  public $base_table = 'versioncontrol_operations';
+  public $base_field = 'vc_op_id';
+  public $revision_alias = '';
+  public $repo_id_alias = '';
+
+  function construct() {
+    parent::construct();
+    $this->backends = versioncontrol_get_backends();
+  }
+
+  function pre_render($results) {
+    $vc_op_ids = array();
+    foreach ($results as $result) {
+      $vc_op_ids[] = $result->{$this->base_field};
+    }
+    $this->operations = versioncontrol_operation_load_multiple($vc_op_ids);
+  }
+
+  function query() {
+    parent::query();
+    $this->revision_alias = $this->view->query->add_field($this->base_table, 'revision');
+    $this->repo_id_alias = $this->view->query->add_field($this->base_table, 'repo_id');
+  }
+
+  function option_definition() {
+    $options = parent::option_definition();
+
+    $set = versioncontrol_get_views_set('individual_commit_view');
+    $view_name = $set->getViewName();
+
+    $options['single_operation_view'] = array('default' => $view_name ? $view_name : '');
+
+    return $options;
+  }
+
+  function options_form(&$form, &$form_state) {
+    parent::options_form($form, $form_state);
+    $all_views = drupal_map_assoc(array_keys(views_get_all_views()));
+
+    $form['single_operation_view'] = array(
+      '#type' => 'select',
+      '#title' => t('Display type'),
+      '#description' => t('The view that is going to be used on the description for of the RSS item.'),
+      '#options' => $all_views,
+      '#default_value' => $this->options['single_operation_view'],
+    );
+  }
+
+  function render($row) {
+    global $base_url;
+    $vc_op_id = $row->{$this->field_alias};
+    $operation = $this->operations[$vc_op_id];
+    $description_view = $this->options['single_operation_view'];
+
+    $view = views_get_view($description_view);
+    // Basic logic here borrowed from views_embed_view().
+    if (!$view || !$view->access('default')) {
+      return '';
+    }
+    $repo_id = $row->{$this->repo_id_alias};
+    $revision = $row->{$this->revision_alias};
+    $view_output = $view->preview('default', array($repo_id, $revision));
+
+    $item = new stdClass();
+    $item->title = $view->get_title();
+    $item->link = url(sprintf('commitlog/commit/%s/%s', $repo_id, $revision), array('absolute' => TRUE));
+    $item->description = $view_output;
+    $item->elements = array(
+      array('key' => 'pubDate', 'value' => gmdate('r', $operation->date)),
+      array(
+        'key' => 'dc:creator',
+        'value' => $operation->author,
+        'namespace' => array('xmlns:dc' => 'http://purl.org/dc/elements/1.1/'),
+      ),
+      array(
+        'key' => 'guid',
+        'value' => t('VCS Operation !vc_op_id at !base_url', array('!vc_op_id' => $vc_op_id, '!base_url' => $base_url)),
+        'attributes' => array('isPermaLink' => 'false')
+      ),
+    );
+
+    foreach ($item->elements as $element) {
+      if (isset($element['namespace'])) {
+        $this->view->style_plugin->namespaces = array_merge($this->view->style_plugin->namespaces, $element['namespace']);
+      }
+    }
+
+    return theme($this->theme_functions(), $this->view, $this->options, $item, $this->field_alias);
+  }
+}
diff --git includes/views/versioncontrol.views.inc includes/views/versioncontrol.views.inc
index 8037669..29e337a 100755
--- includes/views/versioncontrol.views.inc
+++ includes/views/versioncontrol.views.inc
@@ -39,7 +39,7 @@ function versioncontrol_views_data() {
       'handler' => 'views_handler_filter_numeric',
     ),
     'argument' => array(
-      'handler' => 'views_handler_argument_numeric',
+      'handler' => 'versioncontrol_handler_argument_repository_repo_id',
     ),
   );
   $data['versioncontrol_repositories']['name'] = array(
@@ -626,7 +626,35 @@ function versioncontrol_views_handlers() {
       'versioncontrol_handler_filter_operation_type_label' => array(
         'parent' => 'views_handler_filter_string',
       ),
+      // argument handlers
+      'versioncontrol_handler_argument_repository_repo_id' => array(
+        'parent' => 'views_handler_argument_numeric',
+      ),
     ),
   );
   return $ret;
 }
+
+/**
+ * Implementation of hook_views_plugins.
+ */
+function versioncontrol_views_plugins() {
+  return array(
+    'row' => array(
+      'versioncontrol_operations_rss' => array(
+        'title' => t('Versioncontrol Operations as RSS items'),
+        'help' => t('Display versioncontrol operations for RSS feeds.'),
+        'handler' => 'versioncontrol_plugin_row_operation_rss',
+        'path' => drupal_get_path('module', 'versioncontrol') . '/includes/views/plugins', // not necessary for most modules
+        'theme' => 'versioncontrol_view_row_operation_rss',
+        'theme file' => 'versioncontrol_theme.inc',
+        'theme path' => drupal_get_path('module', 'versioncontrol') . '/includes',
+        'base' => array('versioncontrol_operations'), // only works with 'versioncontrol_operations' as base.
+        'uses options' => TRUE,
+        'uses fields' => FALSE,
+        'type' => 'feed',
+        'help topic' => 'style-node-rss',
+      ),
+    ),
+  );
+}
diff --git versioncontrol.module versioncontrol.module
index dc7442d..afc3f42 100644
--- versioncontrol.module
+++ versioncontrol.module
@@ -150,6 +150,10 @@ function versioncontrol_theme() {
     'arguments' => array(),
     'file' => 'includes/versioncontrol_theme.inc'
   );
+  $theme['versioncontrol_view_row_operation_rss'] = array(
+    'arguments' => array('view', 'options', 'item'),
+    'file' => 'includes/versioncontrol_theme.inc'
+  );
   return $theme;
 }
 
@@ -381,6 +385,51 @@ function versioncontrol_repository_load_multiple($ids = array(), $conditions = a
 }
 
 /**
+ * Load multiple versioncontrol operations, given provided conditions and
+ * options.
+ *
+ * @param $ids
+ * @param $conditions
+ * @param $options
+ * @return array
+ */
+function versioncontrol_operation_load_multiple($ids = array(), $conditions = array(), $options = array()) {
+  $backends = versioncontrol_get_backends();
+
+  // FIXME Stop working fine only if we pass $ids
+  //       Main problem here is figured out which controller to use to
+  //       avoid having a bad type for each operation object returned.
+  if (!empty($ids)) {
+    // Try to know which controller we need to use based on the vcs
+    $query = db_select('versioncontrol_operations', 'vco');
+    $query->join('versioncontrol_repositories', 'vcr', 'vco.repo_id = vcr.repo_id');
+    $init_result = $query->fields('vco', array('vc_op_id'))
+      ->fields('vcr', array('vcs'))
+      ->condition('vco.vc_op_id', $ids, 'IN')
+      ->execute();
+    $vc_op_ids_by_vcs = array();
+    foreach ($init_result as $record) {
+      $vc_op_ids_by_vcs[$record->vcs][] = $record->vc_op_id;
+    }
+
+    $results = array();
+    foreach ($vc_op_ids_by_vcs as $vcs => $vc_op_ids) {
+      $vcs_results = $backends[$vcs]->loadEntities('operation', $vc_op_ids, $conditions, $options);
+      $results += $vcs_results;
+    }
+    return $results;
+  }
+
+  $results = array();
+  foreach ($backends as $vcs => $backend) {
+    $vcs_results = $backend->loadEntities('operation', $ids, $conditions, $options);
+    $results += $vcs_results;
+  }
+
+  return $results;
+}
+
+/**
  * Get a list of all backends with its detailed information.
  *
  * @param string $backend
