Use correct root for git repositories.
diff --git a/commits/repositories.php b/commits/repositories.php
index 99ff5fc..d6530e7 100644
--- a/commits/repositories.php
+++ b/commits/repositories.php
@@ -9,8 +9,8 @@
 * Contributors:
 *    Wayne Beaton (Eclipse Foundation)- initial API and implementation
 *******************************************************************************/
-
-$find='find /home/wayne/git -type d -name *.git | xargs -I \'{}\' git --git-dir={} rev-parse --git-dir 2> /dev/null';
+$path = '/gitroot/';
+$find="find $path -type d -name *.git | xargs -I '{}' git --git-dir={} rev-parse --git-dir 2> /dev/null";
 exec($find, $repositories);
 
 foreach($repositories as $repository) {