Git clean 被忽略的文件夹

发布于 2025-01-06 10:23:21 字数 259 浏览 0 评论 0原文

我有一个文件夹 foo 包含在 gitignore 中:

 - .gitignore  (this contains 'foo')
 - foo
    *
    *** bar

当我运行 git clean -fgit clean -f -x 时,这不会删除bar(bar是普通文件)。

有没有办法告诉 git 清理被忽略的文件夹?

I have a folder foo that is included in gitignore:

 - .gitignore  (this contains 'foo')
 - foo
    *
    *** bar

When I run git clean -f or git clean -f -x, this does not delete bar (bar is a normal file).

Is there a way to tell git to clean inside ignored folders?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

祁梦 2025-01-13 10:23:21

git clean -fdx 将删除所有未跟踪的文件,包括目录。 -d 对于使清理器下降到未跟踪的目录是必需的。

git clean -fdx will delete all untracked files, including directories. The -d is necessary to cause the cleaner to descend into the untracked dir.

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