tags:

views:

25

answers:

1

How do you include a compiled binary on Github?

A: 

You can link to a specific file in a GitHub repo using the URL http://github.com/<username>/<project>/blob/<branch>/<path/to/file>. So if you track your compiled binary, you can link to it that way.

Otherwise, you can upload the compiled binary to your project's download page, and distribute that URL.

mipadi