Skip to content
Snippets Groups Projects
Commit 88e9e9e1 authored by Scott Chacon's avatar Scott Chacon
Browse files

will now set the current tip() as your git 'master' branch for packfile upload

parent 41f4e0a8
No related branches found
No related tags found
No related merge requests found
......@@ -126,9 +126,9 @@
return self._config['remote.' + remote_name + '.url']
def update_references(self):
# if bookmarks exist, add them as git branches
# if non of the bookmarks are tip(), add the tip as your master branch
pass
# TODO : if bookmarks exist, add them as git branches
c = self.map_git_get(hex(self.repo.changelog.tip()))
self.git.set_ref('refs/heads/master', c)
def export_git_objects(self):
print "exporting git objects"
......@@ -158,7 +158,6 @@
self.export_hg_commit(self, p_rev)
ctx = self.repo.changectx(rev)
print ctx
tree_sha = self.write_git_tree(ctx)
# TODO : something with tags?
......@@ -162,6 +161,8 @@
tree_sha = self.write_git_tree(ctx)
# TODO : something with tags?
# TODO : explicit file renaming, copying?
commit = {}
commit['tree'] = tree_sha
(time, timezone) = ctx.date()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment