这就是我想做的——在某个地方有一个带有项目“模板”的存储库。假设https://github.com/hakimel/reveal.js
我正在寻找一种更短的方法来执行以下操作:
git clone git://github.com/hakimel/reveal.js.git my-presentation
cd my-presentation
rm -rf .git
git init
git ci -am 'initial reveal.js presentation commit'
所以,关键是它将是一个新的干净的 repo,不需要所有项目的历史,也不需要模板的来源。它不是一个 fork,它是一个基于模板的新项目。