*WARNING* As of 2010-05-12, NMI pulls its repository from the public Condor repository (http://condor-git.cs.wisc.edu/repos/condor.git).  As such, it only includes public branches.  Thus, random other working branches will not generally be available, and the following _will not work_.
 
 *Step-by-step instructions:*
-1: Log into nmi-s006 (get an account if necessary).
+1: Log into nmi-s006.cs.wisc.edu (get an account if necessary).
 2: Become the cndrauto user. Hint: you probably have sudo access, from there =su - cndrauto=.
-3: As the cndrauto user, run git fetch to update the git repo on nmi-s006 from the latest copy on the central repository. Make sure that /prereq/bin (where git is found on nmi-s006) is in your PATH.
+3: As the cndrauto user, run git fetch to update the git repo on nmi-s006.cs.wisc.edu from the latest copy on the central repository. Make sure that /prereq/bin (where git is found on nmi-s006.cs.wisc.edu) is in your PATH.
 {code}
    % sudo su - cndrauto
    % git --git-dir=/space/git/CONDOR_SRC.git fetch
@@ -49,23 +49,23 @@
 
 Before you start, make sure that you have an account on nmi-s006.cs.wisc.edu. You also need to be in the cndr-cvs group. NMI staff can set you up with both.
 
-This assumes that the changes you want to test are checked into your local git repo in a branch named =feature-branch=. (Another option is to scp your workspace to nmi-s006.)
+This assumes that the changes you want to test are checked into your local git repo in a branch named =feature-branch=. (Another option is to scp your workspace to nmi-s006.cs.wisc.edu.)
 
 Here's how it works:
 
 From your usual machine,
 
-  % ssh nmi-s006 mkdir workspace
+  % ssh nmi-s006.cs.wisc.edu mkdir workspace
   % cd path-to-git-dir
-  % git archive feature-branch | ssh nmi-s006 cd workspace \&\& tar xf -
+  % git archive feature-branch | ssh nmi-s006.cs.wisc.edu cd workspace \&\& tar xf -
 
 If you don't have a feature-branch and want to build your workspace as is, use the following.
 
-  % ssh nmi-s006 mkdir workspace
+  % ssh nmi-s006.cs.wisc.edu mkdir workspace
   % cd path-to-git-dir
-  % tar cf - * | ssh nmi-s006 cd workspace \&\& tar xf -
+  % tar cf - * | ssh nmi-s006.cs.wisc.edu cd workspace \&\& tar xf -
 
-Then, log into nmi-s006, and run the following commands
+Then, log into nmi-s006.cs.wisc.edu, and run the following commands
 
   % PATH=/prereq/bin:$PATH
   % cd workspace