仅将一个文件从本地存储库推送到 GitHub

发布于 2024-12-06 04:19:49 字数 399 浏览 2 评论 0原文

我有一个包含多个脚本的存储库。其中之一特别有用,我想使用 GitHub 来分享它。

如何将一个文件(包含提交历史记录)导出到 GitHub 存储库,而不共享同一存储库中的所有其他脚本?

类似于:

git remote add 'origin' [email protected]:user/Project.git
git push -u 'origin' ./useful-script.sh

但是如何指定单个文件名?或者我应该创建某种特殊的“部分”提交?

I have a repo with multiple scripts. One of them is especially useful and I want to share it using GitHub.

How can I export one file (with commit history) to a GitHub repo without sharing all other scripts from the same repo?

Something like:

git remote add 'origin' [email protected]:user/Project.git
git push -u 'origin' ./useful-script.sh

But how do I specify a single filename? Or should I create some kind of special 'partial' commit?

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

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

发布评论

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

评论(1

在你怀里撒娇 2024-12-13 04:19:49

您必须使用filter-branch来重写您的历史记录并删除除单个文件之外的所有内容:

git filter-branch --index-filter '
  git rm --cached -f -r .;
  git add ./useful-script.sh;
' --all

应该完成这项工作。

如果 --index-filter 不起作用(我不确定那里的 git add),请尝试使用相同参数的“--tree-filter”。

You'd have to use filter-branch to rewrite your history and strip everything but that single file:

git filter-branch --index-filter '
  git rm --cached -f -r .;
  git add ./useful-script.sh;
' --all

should do the job.

If --index-filter does not work (I'm not sure about that git add there), try `--tree-filter' with the same argument.

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