/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to git_repository.py

Merge James.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
            return self._revision_cache[revision_id]
149
149
        git_commit_id = ids.convert_revision_id_bzr_to_git(revision_id)
150
150
        raw = self._git.rev_list([git_commit_id], max_count=1, header=True)
151
 
        print "fetched revision:", git_commit_id
 
151
        # print "fetched revision:", git_commit_id
152
152
        revision = self._parse_rev(raw)
153
153
        self._revision_cache[revision_id] = revision
154
154
        return revision
255
255
 
256
256
    def _fetch_blob(self, git_id):
257
257
        lines = self._git.cat_file('blob', git_id)
258
 
        print "fetched blob:", git_id
 
258
        # print "fetched blob:", git_id
259
259
        if self._building_inventory is not None:
260
260
            self._building_inventory.git_file_data[git_id] = lines
261
261
        return lines
372
372
            max_count=1, topo_order=True, paths=[path])
373
373
        [line] = lines
374
374
        result = ids.convert_revision_id_git_to_bzr(line[:-1])
375
 
        print "fetched file revision", line[:-1], path
 
375
        # print "fetched file revision", line[:-1], path
376
376
        return result
377
377
 
378
378
    def _get_entry_revision_from_db(self, revid, path, git_id, executable):