如何在bash / ubuntu下使用SSH在Windows上使用hg?

时间:2018-03-10 03:41:08

标签: windows bash ubuntu mercurial

我希望我能把它放在我的mercurial.ini

[ui]
ssh = C:\Windows\System32\bash.exe -c ssh

由于C:\Windows\System32\bash.exe -c ssh看起来像是在工作:

C:\Users\mpen>C:\Windows\System32\bash.exe -c ssh
usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
           [-D [bind_address:]port] [-E log_file] [-e escape_char]
           [-F configfile] [-I pkcs11] [-i identity_file] [-L address]
           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
           [-Q query_option] [-R address] [-S ctl_path] [-W host:port]
           [-w local_tun[:remote_tun]] [user@]hostname [command]

但是当我hg pullhg clone时,它就会挂起。有没有一个技巧让这个工作,或者只是不允许做这样的跨操作系统的东西?

1 个答案:

答案 0 :(得分:1)

我猜测它的用户信息提示。 (例如,你相信这个主机指纹)

创建run.bat文件:

bash -c "ssh %* 2>&1"

并将其添加到ssh

的ini文件中
[ui]
ssh = C:\somepath\run.bat

现在当它挂起hg clone时 - 做一个ctrl C,你应该得到一些文字暗示问题出在哪里。