我尝试使用 apache commons-exec 运行 git clone 命令但卡住了,它根本没有提示我输入密码并阻止在那里。
DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler( new PumpStreamHandler( System.out, System.err, System.in ) );
executor.execute( "git clone --progress -v https://xxx/prj.git" );
有什么想法可以解决这个问题吗?