我创建了一个项目(https://github.com/twaldecker/vim-cheat-sheet),现在我意识到我喜欢备忘单的风格,并想用它创建一个模板。
我所做的是:
git clone cheatsheet-vim cheatsheet-template
cd cheatsheet-template
# remove vim specific content, some additions
cd ../cheatsheet-vim #go back to vim project
git checkout -b testbranch #create a new branch
git remote add template ../cheatsheet-template
git fetch template
git merge template/master #now I got the template project as branch in the base project
现在的问题是如何让 vim-cheatsheet 项目基于项目本身创建的模板。
我想拥有的:
- 有我可以更改的模板项目
- 有cheatsheet-vim项目,我可以从模板中提取canges