[racket] TR: Polymorphic types
On 2015-01-18 16:14:45 -0800, Jordan Johnson wrote:
> Speaking of that: with the splitting of the repos, if I want to contribute
> code to the TR repository, is there a quick reference doc yet for running
> that repo’s code against an existing Racket installation (or a clone of
> the main racket repo)? (The first time I wrote a TR wrapper lib, I found
> Greg Hendershott’s “[1]Guide for Infrequent Contributors” tremendously
> helpful in getting over the initial hump in the Racket+Git learning curve
> — so I suppose I’m hoping the procedure will be similarly straightforward,
> post-split.)
It's not quite a step-by-step blog post guide, but the latter half of
Sam's e-mail here explains how to link to a TR checkout:
http://lists.racket-lang.org/dev/archive/2014-December/014903.html
(just replace "rackunit" there with "typed-racket")
To contribute pull requests, you will want to add a remote for your TR
checkout that points to your fork of TR, e.g.,
git remote add github git at github.com:<user>/typed-racket.git
and then push to the "github" remote. Then you can make a pull request
via Github's web interface.
Cheers,
Asumu