Can I make a pull request on some else's gist on GitHub?

I'm aware of the fork, clone and commit workflow for a gist I own. I'd like to know if I can request to update someone else's gist with my fork.

Thanks!

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

You cannot currently open a pull request on a Gist.

You can comment though on the Gist and ask the author to update the Gist from your fork.

link|improve this answer
Unfortunately, since it is a git repository you can already clone it. They just haven't surfaced the pull request aspect. – studgeek Mar 8 at 16:59
feedback

As @Kevin said, unfortunately github doesn't expose a GUI for pull requests on gists. You can however fork the gist, make your changes in the fork, then share a link to your fork with the original author.

If the original author is keeping a local cloned repository of their gist (see How do you manage your gists on github?) then they can do a pull against your fork as a remote using the gist # (e.g. git://gist.github.com/1131276)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.