# HG changeset patch # User Marcin Kuzminski # Date 1337625675 -7200 # Node ID 48d93ea1e245f842f0bbe0f5c89e2fc873302612 # Parent 4c239e0dcbb751243339d7dcfb04b8a945df48b1 fixed issues with support of bare-repos by vcs lib diff -r 4c239e0dcbb7 -r 48d93ea1e245 rhodecode/lib/vcs/backends/git/repository.py --- a/rhodecode/lib/vcs/backends/git/repository.py Sun May 20 16:38:00 2012 +0200 +++ b/rhodecode/lib/vcs/backends/git/repository.py Mon May 21 20:41:15 2012 +0200 @@ -66,6 +66,7 @@ 'config'), abspath(get_user_home(), '.gitconfig'), ] + self.bare = self._repo.bare @LazyProperty def revisions(self): @@ -226,9 +227,10 @@ try: return time.mktime(self.get_changeset().date.timetuple()) except RepositoryError: + idx_loc = '' if self.bare else '.git' # fallback to filesystem - in_path = os.path.join(self.path, '.git', "index") - he_path = os.path.join(self.path, '.git', "HEAD") + in_path = os.path.join(self.path, idx_loc, "index") + he_path = os.path.join(self.path, idx_loc, "HEAD") if os.path.exists(in_path): return os.stat(in_path).st_mtime else: @@ -236,8 +238,9 @@ @LazyProperty def description(self): + idx_loc = '' if self.bare else '.git' undefined_description = u'unknown' - description_path = os.path.join(self.path, '.git', 'description') + description_path = os.path.join(self.path, idx_loc, 'description') if os.path.isfile(description_path): return safe_unicode(open(description_path).read()) else: