Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
注意到当我为我的 Trigger.io 应用程序构建时,我在.template/和development/.
.template/
development/
我应该忽略这些文件吗?.gitignore您想分享任何建议或文件吗?
.gitignore
您需要保留在源代码管理中的唯一文件在您的src目录中。在那里,您也可以排除identity.json,因为不同的开发人员应该有自己的身份。
src
identity.json
如何将另一个协作者添加到我的 trigger.io 项目?
所以,如果你的 git repo 比 src 高一级,我会在我的 .gitignore 中有这个:
development release local_config.json forge-error.log src/identity.json
当然,另一种选择(我倾向于)是仅源代码控制src并仅包含identity.json在您的 .gitignore ...