本文介绍了我应该把什么放入流星.gitignore文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个新的流星项目。我在猜测 .meteor
dir包含配置文件(需要)和临时文件(不需要)的组合。 那你的 .gitignore
?
解决方案
您想从版本控制中排除的唯一目录是 .meteor / local
。
虽然流星可以自动创建正确的
.meteor
和 .meteor / .gitignore
需要做任何事情。 I have a new meteor project. I'm guessing the .meteor
dir has a combination of configuration files (needed) and temporary files (not needed).
So what's in your .gitignore
?
解决方案
The only directory you want excluded from version control is .meteor/local
.
Meteor automatically creates the right .meteor
and .meteor/.gitignore
, though -- you shouldn't need to do anything.
这篇关于我应该把什么放入流星.gitignore文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!