-
Notifications
You must be signed in to change notification settings - Fork 0
Running a Pull Request
Miles edited this page Dec 13, 2017
·
1 revision
So someone has submitted a PR and asked you to review it?
Situation 1 - You're working in a fork of this repo.
Fetch the PR: git fetch upstream pull/<pull request number>/head
Make a new branch from the PR: git checkout -b <give it a name, ie PR#> FETCH_HEAD
You are now in the PR codebase, time to run the stack (TODO: Add instructions for running tests)
docker run -v $pwd:/workdir milesg/kaggle-icc:latest python icc/ml_stack.py
Situation 2 - You have directly cloned this repo.
All else stays the same, but swap upstream
to origin