degit 直接了当的脚手架!straightforward project scaffolding[ˈskæfəldɪŋ].
安装
npm install -g degit
使用degit复制git仓库。当运行 degit some-user/some-repo 命令行时,degit会找到git https://github.com/some-user/some-repo 上最新的提交,下载相关 tar file 到 ~/.degit/some-user/some-repo/commithash.tar.gz(如果本地之前没有的话)。这比直接使用git clone要快,因为你没有下载整个git记录。
要使用NODE 8+,以支持async/await.
不支持私有仓库。
使用方法:原文 https://www.npmjs.com/package/degit
Wait, isn't this just git clone --depth 1
?
不同的地方:
- git clone下来的项目会自带.git,你需要重新初始化
- 支持缓存和离线。之前已经下载过.tar.gz文件。
- 命令少(
degit user/repo
instead ofgit clone --depth 1 [email protected]:user/repo
) - actions
- 交互,支持脚本