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.
我在 heroku 上有两个 nodejs 应用程序。我需要我的一个应用程序来更改另一个应用程序的文件。我有一个目标应用程序的 git url。换句话说,我在 nodejs 应用程序的内存中有文件。我需要将它们推送到 git url。类似这个 nodejs git-stream 模块的东西,但这不起作用。
请..
我不会明确推荐为此目的使用 git。如果您的应用程序更改了其他文件并且您想推送,则具有更改文件的整个应用程序将重新启动,并且由于从外部下载模块,heroku 需要很长时间。相反,实施只有您的服务器可以连接的安全文件上传机制,并通过 http 将文件流式传输到该服务器。