Skip to content
#

gist

Here are 318 public repositories matching this topic...

dalu
dalu commented Mar 21, 2020

I'm probably missing something obvious, but neither the website nor this repo has any documentation.

Is this a markdown editor I can embed in my "classic" rendered (html rendered by server) websites?

Do I have to build my own version?
Can I use npm to import it?
Is there any documentation?

chrisputnam9
chrisputnam9 commented May 18, 2018

I am in love with this plugin!

The documentation states: "You need to either set global git config:
$ git config --global github.user Username

Which makes it sound like there's another method, but none is listed that I see

I'm interested in using this in various multi-user environments and would need to pass in the username and/or token dynamically.

Thanks for your awesome work - I th

code-notes
kodaman2
kodaman2 commented Oct 5, 2019

Describe the bug
Repetitive loading have you waiting on gists loading.

To Reproduce
Steps to reproduce the behavior:

  1. Go to Gists, see the loading circle
  2. Click on local
  3. Go back to gists, and a new loading circle appears

Expected behavior
I think the loaded gists should remain loaded even when going to local, and maybe have a refresh button if you want to pull new gi

Gisto

Gisto is a Cross-platform snippets management desktop application that allows you and/or your team share code snippets fast and easily. Based on GitHub Gists Infrastructure which means you can use all your existing snippets by connecting your GitHub account! Gisto started as an attempt to fulfill the lack of a syntax highlighted and cloud synchronized code snippet solution. You may thing of Gisto as Evernote for code.

  • Updated Jul 7, 2020
  • JavaScript
nealmcb
nealmcb commented Apr 2, 2020

I finally figured out why gist /tmp/my_pastebin_file kept dumping me into the editor rather than simply uploading the file I was specifying.
I skimmed the documentation:

gist create <desc> [--public] [--encrypt] [FILES ...]

too quickly and didn't look before the [--encrypt] option, assuming that the only positional arguments were the optional FILES.

I think it would be more conv

uolcano
uolcano commented Sep 5, 2016

git虽好,但总会遇到一些不希望的提交,所以就会有增删改某次或某些提交的需求。下面收集一下,修改本地和远程版本历史的一些方法。

本地修改

由于以下修改本身是对版本历史的修改,在需要push到远程仓库时,往往是不成功的,只能强行push,这样会出现的一个问题就是,如果你是push到多人协作的远程仓库中,会对其他人的远程操作构成影响。通常情况下,建议与项目远程仓库的管理员进行沟通,在完成你强制push操作后,通知其他人同步。

  1. 修改最近一次的commit

    修改提交的描述

    git commit --amend

    然后会进入一个文本编辑器界面,修改commit的描述内容,即可完成操作。

    修改提交的文件

    git add <filename> # 或者 git 

Improve this page

Add a description, image, and links to the gist topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the gist topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.