摘要: 安装 配置 点击查看配置 _vimrc " Vim with all enhancements source $VIMRUNTIME/vimrc_example.vim " Mouse behavior (the Windows way) behave mswin " Use the interna 阅读全文
posted @ 2026-09-13 15:08 tom_first 阅读(8) 评论(0) 推荐(0)
摘要: 安装 从 https://github.com/stascorp/rdpwrap 下载 https://github.com/stascorp/rdpwrap/releases/tag/v1.6.2 下载zip包 解压 停止远程桌面服务 右键,以管理员身份运行 install.bat 会安装以下文件 阅读全文
posted @ 2026-09-12 18:51 tom_first 阅读(20) 评论(0) 推荐(0)
摘要: git客户端配置 cd ~ git config --global user.name "<USERNAME>" git config --global user.email "<EMAIL>" ssh-keygen -t rsa -C "<EMAIL>" -b 4096 cat ~/.ssh/id 阅读全文
posted @ 2019-01-25 19:26 tom_first 阅读(117) 评论(0) 推荐(0)
摘要: 选择性的checkout代码 命令行 第一步, svn checkout --depth immediates <URL> ./ --depth参数 empty:不co任何文件 files:仅co文件,不co目录 immediates:仅co当前目录下的文件和目录,不递归子目录 infinity:c 阅读全文
posted @ 2019-01-25 18:08 tom_first 阅读(206) 评论(0) 推荐(0)