Mercurial 忽略“.idea” PyCharm 的文件夹?

发布于 2024-12-02 05:43:16 字数 236 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(3

夜雨飘雪 2024-12-09 05:43:16

听起来您希望 Mercurial 停止跟踪 .idea 下的所有内容。这应该可以工作(在存储库根目录中发出命令):

hg forget .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 forget .idea\*
攒一口袋星星 2024-12-09 05:43:16

使用hg忘记.idea。它类似于 hg remove,只是它不会从工作目录中删除文件。

Use hg forget .idea. It's like hg remove, only it doesn't delete the file from your working directory.

呆萌少年 2024-12-09 05:43:16

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文