To add someone who is not part of the dart group as a reviewer on a pull request, you need to give the person READ access to the dart repo.
You can do this from the settings page if you are an admin on the dart repo https://github.com/NCAR/DART/settings/access
Note the whole world can read the dart repo. Explicitly giving a person READ access lets you add them as a reviewer.
We need to keep the NCAR/DART:master branch up-to-date with all changes made on the Manhattan branch (NCAR/DART:Manhattan). We want to encourage people to issue pull requests to engage community participation. This is a good thing. Causes us a little extra work, but that's the cost of doing business. I suppose there are two ways to do this: one would be to issue a pull request from the Manhattan branch to the master branch - which then has to involve another person to approve the already-approved changes - or - you can do this from the command line.
Small changes can be handled effectively with cherry-pick, larger changes should be handled in some other manner. "Cherry picking is the act of picking a commit from a branch and applying it to another."
gitdiff origin/master..master
Note replace 8575309 with the commit you want to cherry-pick.
git clone git@github.com:NCAR/DART.git temp_DART
cd temp_DART
git checkout master
git cherry-pick -m 1 Manhattan 8575309
gitdiff origin/master..master
git push origin master
cd ..
rm -rf temp_DART