摘要: 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 阅读(100) 评论(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 阅读(188) 评论(0) 推荐(0)