VS Code 中的源代码管理未捕获新文件夹
我对此很陌生...当我在 Visual Studio Code 中对文件进行更改或添加新文件时,源代码控制面板将使用蓝色图标捕获该文件,但是当我添加新文件夹时,这不会给定蓝色图标或显示在源代码控制面板中...为什么?以及如何到达那里?感谢
I am new to this... When I make changes in files or add a new file in Visual Studio Code, it will be captured by the source control panel with a blue icon, but when I add a new folder, this will not be given the blue icon or show up in source control panel... why? And how to make it there? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果新目录为空,
git
将不会跟踪它。您需要添加.gitkeep
文件或其他一些“虚拟”文件。请参阅 如何将空白目录添加到Git 存储库?
If the new directory is empty,
git
won't track it. You'll need to add a.gitkeep
file or some other "dummy" file.See How can I add a blank directory to a Git repository?