In article [off-list ref] (at Wed, 21 Dec 2005 12:45:51 -0800), Junio C Hamano [off-list ref] says:
That is, how does one do something like this, with an ipv6
literal address?
telnet 127.0.0.1 80
Is it done like this
telnet '[::1]' 80
or
telnet '::1' 80
Your patch suggests the former, but I just wanted to make sure.
In this case (telnet), we do the latter.
But, we definitely do
scp file1 file2 ... '[3ffe:ffff:...:1]:/tmp/'
like
scp file1 file2 ... remote.example.com:/tmp/
Hope this helps.
--yoshfuji