Git:shell在实时服务器上生成文件后,git repo会自动更新吗?
我对版本控制系统非常陌生,这部分似乎很混乱。
我正在使用 PHP 框架(Symfony),有时我需要生成模块等 - 新文件。
我通过连接到实时服务器来使用 Putty 来完成此操作。
但是服务器上生成的文件不会自动出现在 git 上的存储库中,不是吗?
这背后的理念是什么?
I'm very new to version control systems and this part seems confusing.
I'm using a PHP framework (Symfony) and sometimes I need to generate modules, etc. - new files.
I do this with Putty by connecting to the live server.
But the generated files on the server won't automatically appear in the repo on git, will they?
What is the concept behind this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有交互,文件不会添加到您的存储库中。进入存储库的所有内容都需要使用 git add fileName 手动添加
Files won't be added to your repository without interaction. Everything that goes into your repository will need to be manually added with
git add fileName