2017-07-18 75 views

回答

2

你所描述的是一個git clean過濾器:

echo '*.ipynb filter=notebook2python' >> .gitattributes 
git config --global filter.notebook2python.clean /path/to/notebook2python/script 
git config --global filter.notebook2python.smudge cat 

更多文檔中Customizing Git - Git Attributes

相關問題