管理和查看 GIST 中的分支

Managing and viewing branches in a GIST

我创建了一个 gist 并将其克隆到本地,我很乐意管理它。我还创建了一个开发分支和 committed/pushed 它(主要是作为理解 git 的练习)。我可以在本地使用 posh~git 查看和管理所有这些,但是我在 https://gist.github.com 或我的 git 存储库中找不到新分支的任何踪迹。

这是 gist 界面的基本(且可以理解的)限制,还是有办法在 gist 上 select 分支?

我的动机是使用对包含的资产的引用来分享要点。

这是 gist.github.com 的限制。如果您需要使用其他功能,请将其设为 github.com 下的普通仓库,而不是要点。

我不知道 gist 有任何普通回购 没有的特性。

but I can't find any trace of the new branch in my gists at https://gist.github.com or in my git repo's.

不仅gists不支持分支,而且默认分支刚刚(2022年2月)更改:

Gists Now Support Alternative Default Branch Names

As you may or may not know, gists are actually Git repositories.
New gists are now created with a default branch name of either main or the alternative default branch name you've defined in your user settings.

(参见 git config --global init.defaultbranch xxx,在 中)

This matches how other repositories are created on GitHub.