git 仅推送一个文件到 Heroku

发布于 2024-10-13 08:56:32 字数 56 浏览 1 评论 0原文

是否可以只将一个文件推送到 Heroku,而不是关闭所有已更改的文件?

谢谢...

Is it possile to only push one file to Heroku, instead off all changed files?

Thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

所谓喜欢 2024-10-20 08:56:32

不会。Git 跟踪内容而不是文件,因此您要么推送全部内容,要么不推送任何内容。
如果您不想推送某些文件,请将它们添加到 .gitignore 文件中。
但是,如果您已经提交了它们,您仍然会推送它们以进行该提交,但任何后续更改都将被忽略。

No. Git tracks content not files, so you push all or nothing.
If there are files that you don't want to ever push, add them to the .gitignore file.
If you've already committed them however, you would still push them for that commit, but any later changes will be ignored.

他夏了夏天 2024-10-20 08:56:32

如果您只提交该一个文件,那么它是唯一会被推送的文件。

If you commit only that one file then it is the only one that will be pushed.

滴情不沾 2024-10-20 08:56:32

您可以提交单个文件

user@mypc~$ git add single/path/to.file
user@mypc~$ git commit -m "si"

You can commit single files

user@mypc~$ git add single/path/to.file
user@mypc~$ git commit -m "si"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文