8

我不小心将文件添加到我的一个要点中,但我不知道如何删除它。怎么做?(即如何从一个 Gist 中删除一个文件,而不删除整个 Gist?

当我编辑并单击(x)文件名的左侧时,文件名及其内容都会消失,但编辑器不会消失。当我想保存它时(Update Gist),出现错误“文件不能为空”。

4

4 回答 4

5

这在 UI 中对我有用:

  • 更新要点
  • 删除内容
  • 删除文件名
  • 单击文件名所在的蓝色十字

文件的表单应该消失。

在那之后,保存你的要点。

于 2013-09-09T22:37:35.447 回答
2

我没有找到通过 GUI 的方法。

但是,请记住,您可以克隆一个 gist,删除该文件,然后将该 Gist 的新版本推送回 GitHub,同时删除该文件。

P:\git\test>git clone https://gist.github.com/efd7e7774d9526484456.git
Cloning into 'efd7e7774d9526484456'...
remote: Counting objects: 8, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 8 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (8/8), done.

P:\git\test>cd efd7e7774d9526484456

P:\git\test\efd7e7774d9526484456>dir
 Volume in drive P has no label.
 Volume Serial Number is D866-48E1

 Directory of P:\git\test\efd7e7774d9526484456

27/04/2013  16:52    <DIR>          .
27/04/2013  16:52    <DIR>          ..
27/04/2013  16:52                 5 f1
27/04/2013  16:52                 5 f2
               2 File(s)             10 bytes
               2 Dir(s)  43 554 910 208 bytes free

P:\git\test\efd7e7774d9526484456>git rm f2
rm 'f2'

P:\git\test\efd7e7774d9526484456>dir
 Volume in drive P has no label.
 Volume Serial Number is D866-48E1

 Directory of P:\git\days\efd7e7774d9526484456

27/04/2013  16:52    <DIR>          .
27/04/2013  16:52    <DIR>          ..
27/04/2013  16:52                 5 f1
               1 File(s)              5 bytes
               2 Dir(s)  43 555 000 320 bytes free

P:\git\test\efd7e7774d9526484456>git st
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       deleted:    f2
#

P:\git\test\efd7e7774d9526484456>git commit -m "remove f2"
[master d5a76f4] remove f2
 1 file changed, 1 deletion(-)
 delete mode 100644 f2

P:\git\test\efd7e7774d9526484456>git push

Username for 'https://gist.github.com': VonC
Password for 'https://VonC@gist.github.com':
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (1/1), done.
Writing objects: 100% (2/2), 218 bytes, done.
Total 2 (delta 0), reused 0 (delta 0)
To https://gist.github.com/efd7e7774d9526484456.git
   b93ce40..d5a76f4  master -> master

如果您不希望该文件出现在您的 gist 的历史记录(日志)中,您可以reset --hard

P:\git\test\days\efd7e7774d9526484456>git lg
* d5a76f4 - (HEAD, origin/master, origin/HEAD, master) remove f2 (3 minutes ago) <VonC>
* b93ce40 -  (7 minutes ago) <VonC>
* d7d8b19 -  (8 minutes ago) <VonC>
* 5eae4d3 -  (8 minutes ago) <VonC>

P:\git\test\efd7e7774d9526484456>git reset --hard d7d8b19
HEAD is now at d7d8b19

P:\git\test\efd7e7774d9526484456>dir
 Volume in drive P has no label.
 Volume Serial Number is D866-48E1

 Directory of P:\git\test\days\efd7e7774d9526484456

27/04/2013  16:52    <DIR>          .
27/04/2013  16:52    <DIR>          ..
27/04/2013  16:52                 5 f1
               1 File(s)              5 bytes
               2 Dir(s)  43 554 832 384 bytes free

P:\git\test\efd7e7774d9526484456>git push --force

Username for 'https://gist.github.com': VonC
Password for 'https://VonC@gist.github.com':
Total 0 (delta 0), reused 0 (delta 0)
To https://gist.github.com/efd7e7774d9526484456.git
 + d5a76f4...d7d8b19 master -> master (forced update)
于 2013-04-27T14:54:04.393 回答
2

Gist 是 git 存储库,因此您可以将该 gist 克隆到您的计算机,修剪该文件并强制将 gist 存储库推回 GitHub。

您可以在要点左侧找到克隆 URL。

git clone https://gist.github.com/1234567.git
cd 1234567
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch wrong_file' --prune-empty --tag-name-filter cat -- --all
git push origin master --force

这样,包括您的历史记录在内的所有内容都将被清除(在此示例中,该文件称为 wrong_file)。

于 2013-04-27T14:54:32.877 回答
0

卷曲

使用身份验证令牌 ( OAuth ):

curl -H "Authorization: token OAUTH-TOKEN" -XDELETE https://api.github.com/gists/G1ST1D

使用凭据:

curl -u user:pass -XDELETE https://api.github.com/gists/G1ST1D

有关更多详细信息,请参阅:

于 2019-09-11T11:44:26.717 回答