/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 branch.py

Somewhat fix commit in git working trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
        if stop_revision is None:
146
146
            stop_revision = source.last_revision()
147
147
        # FIXME: Check for diverged branches
148
 
        refs = { "HEAD": stop_revision }
 
148
        refs = { "refs/heads/master": stop_revision }
149
149
        for name, revid in source.tags.get_tag_dict().iteritems():
150
150
            if source.repository.has_revision(revid):
151
151
                refs["refs/tags/%s" % name] = revid