Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'rh/remote-hg-bzr-updates' (early part)
author
Junio C Hamano
<gitster@pobox.com>
Mon, 25 Nov 2013 16:20:02 +0000
(08:20 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 25 Nov 2013 16:20:02 +0000
(08:20 -0800)
Unbreaks a recent breakage due to use of unquote-c-style.
This may need to be cherry-picked down to 1.8.4.x series.
* 'rh/remote-hg-bzr-updates' (early part):
remote-hg: don't decode UTF-8 paths into Unicode objects
contrib/remote-helpers/git-remote-hg
patch
|
blob
|
history
raw
(from parent 1:
5fd09df
)
diff --git
a/contrib/remote-helpers/git-remote-hg
b/contrib/remote-helpers/git-remote-hg
index 3222afd9da865087b75efbb1be6ea36e240cb452..c6026b9bed37a91e30a278a02013072d21507061 100755
(executable)
--- a/
contrib/remote-helpers/git-remote-hg
+++ b/
contrib/remote-helpers/git-remote-hg
@@
-747,7
+747,7
@@
def parse_commit(parser):
f = { 'deleted' : True }
else:
die('Unknown file command: %s' % line)
- path = c_style_unescape(path)
.decode('utf-8')
+ path = c_style_unescape(path)
files[path] = f
# only export the commits if we are on an internal proxy repo