Posts
命令行问题汇总
命令行问题汇总
记录了当时阿里云服务器常用的一些命令
终端输出至剪切板
windows
`echo hello | clip`mac
echo hello | pbcopy终端文件传输 scp
# local to remote
scp ./fileA wcw@wuchengwei.icu:wcw/
# remote to local
scp wcw@wuchengwei.icu:wcw/fileB ./scp过程中网络中断传输也随即终端, 这时需要增量传输rsyc
rsync -v -P -e ssh ./fileA wcw@wuchengwei.icu:wcw/winscp可以实现断点续传
git clone 超时:The remote end hung up unexpectedly
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999