Skip to main content

Выпуск GitHub AE сейчас ограничен.

Создание gist

В этой статье

Вы можете создать два вида gist: внутренний и секретный. Создайте внутренний gist, если вы готовы поделиться своими идеями с участниками предприятия или секретный gist, если не готовы делать это.

About gists

Gists provide a simple way to share code snippets with others. Every gist is a Git repository, which means that it can be forked and cloned. When you create a gist, the gist will be associated with your account and you will see it in your list of gists when you navigate to your gist home page, http(s)://gist.[hostname].

Gists can be internal or secret. Internal gists show up in Discover, http(s)://gist.[hostname]/discover, where enterprise members can browse new gists as they're created. They're also searchable, so you can use them if you'd like other people to find and see your work.

Secret gists don't show up in Discover, http(s)://gist.[hostname]/discover and are not searchable unless you are logged in and are the author of the secret gist. Secret gists aren't private. If you send the URL of a secret gist to another enterprise member, they'll be able to see it. However, if any other enterprise member discovers the URL, they'll also be able to see your gist. If you need to keep your code away from prying eyes, you may want to create a private repository instead.

After creating a gist, you cannot convert it from internal to secret.. However, a secret gist can be made public by editing the gist and updating the visibility to public.

You'll receive a notification when:

  • You are the author of a gist.
  • Someone mentions you in a gist.
  • You subscribe to a gist, by clicking Subscribe at the top of any gist.

You can discover internal gists others have created by going to the gist home page, http(s)://gist.[hostname] and clicking All Gists. This will take you to a page of all gists sorted and displayed by time of creation or update. You can also search gists by language with Gist Search, http(s)://gist.[hostname]/search. Gist search uses the same search syntax as code search.

Since gists are Git repositories, you can view their full commit history, complete with diffs. You can also fork or clone gists. For more information, see "Forking and cloning gists."

You can download a ZIP file of a gist by clicking the Download ZIP button at the top of the gist. You can embed a gist in any text field that supports Javascript, such as a blog post. To get the embed code, click the clipboard icon next to the Embed URL of a gist. To embed a specific gist file, append the Embed URL with ?file=FILENAME.

Creating a gist

Follow the steps below to create a gist.

You can also create a gist using the GitHub CLI. For more information, see "gh gist create" in the GitHub CLI documentation.

Alternatively, you can drag and drop a text file from your desktop directly into the editor.

  1. Sign in to GitHub AE.

  2. Navigate to your gist home page, http(s)://gist.[hostname].

  3. Optionally, in the "Gist description" field, type a description for your gist.

  4. In the "Filename including extension" field, type a file name for your gist, including the file extensions.

  5. In the file contents field, type the text of your gist.

  6. Optionally, to create an internal gist, click , then click Create internal gist.

    Screenshot of the visibility dropdown menu for a new gist. Next to a button labeled "Create secret gist", a dropdown icon is outlined in dark orange.

  7. Click Create secret Gist or Create internal gist.