git 仅推送一个文件到 Heroku
是否可以只将一个文件推送到 Heroku,而不是关闭所有已更改的文件?
谢谢...
Is it possile to only push one file to Heroku, instead off all changed files?
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不会。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.
如果您只提交该一个文件,那么它是唯一会被推送的文件。
If you commit only that one file then it is the only one that will be pushed.
您可以提交单个文件
You can commit single files