class Git::EscapedPath

def unescape

Convert an escaped path to an unescaped path
def unescape
  bytes = escaped_path_to_bytes(path)
  str = bytes.pack('C*')
  str.force_encoding(Encoding::UTF_8)
end