Grit 删除提交中的文件

发布于 2024-10-26 19:29:32 字数 151 浏览 4 评论 0原文

我使用 Grit/Git 作为数据库来跟踪添加到博客的文件。

我找不到任何有关如何从索引中删除文件的示例。我仍然希望能够在我的 Git 历史记录中保留该文件(能够通过返回提交历史记录来获取它),但我想将其从我当前的 HEAD 中删除。

有什么技巧或窍门吗?

I using Grit/Git as a database to track files added to a blog.

I can't find any example of how I would delete a file from the index. I still want to be able to have the file in my Git history (being able to get it by going back in commit history), but I want to remove it from my current HEAD.

Any tips or tricks?

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

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

发布评论

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

评论(2

转身以后 2024-11-02 19:29:32

http://www.kernel.org/pub/software /scm/git/docs/git-rm.html 可能就是您所需要的。请注意,您需要使用良好的老式 rm 将其从工作树中删除。

http://www.kernel.org/pub/software/scm/git/docs/git-rm.html is probably what you need. Note that you'll need to use good old fashioned rm to remove it from the working tree.

琉璃繁缕 2024-11-02 19:29:32

这应该有效:

  require 'grit'

  repo_path = '/Users/alagu/code/myproject/'
  removable_file = '/Users/alagu/code/myproject/file.txt'
  repo = Grit::Repo.new(repo_path) 
  Dir.chdir(repo_path)
  repo.remove([removable_file])
  repo.commit_index "Deleted #{removable_file}"

This should work:

  require 'grit'

  repo_path = '/Users/alagu/code/myproject/'
  removable_file = '/Users/alagu/code/myproject/file.txt'
  repo = Grit::Repo.new(repo_path) 
  Dir.chdir(repo_path)
  repo.remove([removable_file])
  repo.commit_index "Deleted #{removable_file}"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文