Firebase本地代码与实时项目不同步



我正在学习firebase,我创建了以下示例。我通过取消对示例的注释创建了一个云函数,并将其付诸实践:

const functions = require("firebase-functions");
// Create and Deploy Your First Cloud Functions
// https://firebase.google.com/docs/functions/write-firebase-functions
exports.helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", {structuredData: true});
response.send("Hello from Firebase!");
});

这个代码被推到了live,然后被firebasegui确认。我的问题是,当我邀请另一封电子邮件到该项目,从这封电子邮件中运行firebaseinit,并完成简短的设置说明时,代码仍然在新的本地项目中被注释掉了。我在这里做错了什么?有没有某种firebase pull命令,我可以从我的项目中获得确切的代码到本地?

运行firebase init不会获取项目的现有代码。如果你想与合作者共享代码,你必须使用另一种工具,如github或gitlab。

相关内容

  • 没有找到相关文章

最新更新