mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
remote-bzr: add support to push URLs
Just like in remote-hg. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
d6bb9136c9
commit
aa93845661
1 changed files with 13 additions and 3 deletions
|
@ -32,7 +32,7 @@ import os
|
|||
import json
|
||||
import re
|
||||
import StringIO
|
||||
import atexit
|
||||
import atexit, shutil, hashlib
|
||||
|
||||
NAME_RE = re.compile('^([^<>]+)')
|
||||
AUTHOR_RE = re.compile('^([^<>]+?)? ?<([^<>]*)>$')
|
||||
|
@ -719,11 +719,11 @@ def main(args):
|
|||
global blob_marks
|
||||
global parsed_refs
|
||||
global files_cache
|
||||
global is_tmp
|
||||
|
||||
alias = args[1]
|
||||
url = args[2]
|
||||
|
||||
prefix = 'refs/bzr/%s' % alias
|
||||
tags = {}
|
||||
filenodes = {}
|
||||
blob_marks = {}
|
||||
|
@ -731,6 +731,13 @@ def main(args):
|
|||
files_cache = {}
|
||||
marks = None
|
||||
|
||||
if alias[5:] == url:
|
||||
is_tmp = True
|
||||
alias = hashlib.sha1(alias).hexdigest()
|
||||
else:
|
||||
is_tmp = False
|
||||
|
||||
prefix = 'refs/bzr/%s' % alias
|
||||
gitdir = os.environ['GIT_DIR']
|
||||
dirname = os.path.join(gitdir, 'bzr', alias)
|
||||
|
||||
|
@ -759,7 +766,10 @@ def main(args):
|
|||
def bye():
|
||||
if not marks:
|
||||
return
|
||||
marks.store()
|
||||
if not is_tmp:
|
||||
marks.store()
|
||||
else:
|
||||
shutil.rmtree(dirname)
|
||||
|
||||
atexit.register(bye)
|
||||
sys.exit(main(sys.argv))
|
||||
|
|
Loading…
Reference in a new issue