Mercurial 忽略“.idea” PyCharm 的文件夹?
我正在开发一个 Django 应用程序,这是我第一次使用 Mercurial(使用 bitbucket)。
我已经完成了一些提交,但没有将 PyCharm 中的“.idea”文件夹添加到 hgignore。现在我已将其添加到 hgignore 并希望从中央存储库中删除 .idea 但显然不想在本地删除实际文件夹。
处理这个问题的正确方法是什么?我知道这是很常见的事情,但我正处于学习阶段。
感谢您提前的帮助。
I am developing a Django app and it's my first time with Mercurial(using bitbucket).
I have done some commits without adding ".idea" folder from PyCharm to hgignore. Now I have added it to hgignore and want to remove .idea from the central repository but obviously do not want to delete the actual folder locally.
What's the proper way to handle this? I know this is a common thing, but I'm in the learning stage.
Thanks for the help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来您希望 Mercurial 停止跟踪
.idea
下的所有内容。这应该可以工作(在存储库根目录中发出命令):What it sounds like you want is for Mercurial to stop tracking everything under
.idea
. This should work (command issued in the repository root):使用
hg忘记.idea
。它类似于hg remove
,只是它不会从工作目录中删除文件。Use
hg forget .idea
. It's likehg remove
, only it doesn't delete the file from your working directory.hg忘记.idea\*
应该是你的解决方案!您可以在此处阅读有关忘记/删除的更多信息
http://www.selenic.com/mercurial/hg.1.html
仅供参考,您可以删除 .idea 文件夹。 pycharm 将在您下次使用它打开项目文件时生成它。
hg forget .idea\*
should be your solution!you could read up more on forget / remove here
http://www.selenic.com/mercurial/hg.1.html
just for reference you can delete the .idea folder. pycharm will generate it the next time you open up your project files using it.