| . . . | Unix | DOS | 
| Access | 
    
      $ . .webfunds
      $ cvs get README
      $ cat README
    
     | 
    
      D:\webfunds> webfunds
      D:\webfunds> ..\cvs get README
      D:\webfunds> type README
    
   | 
| get all (including new dirs) | 
    
      $ cvs get lib contracts java
    
     | 
    
      D:\webfunds> ..\cvs get lib contracts java
    
   | 
| (hereafter, all within source) | 
    
      $ cd java
    
     | 
    
      D:\webfunds\java> build
    
   | 
| add new TODO file | 
    
         # write TODO
      $ cvs add TODO
      $ cvs commit TODO
    
     | 
    
         ; write TODO
      D:\webfunds\java> ..\cvs add TODO
      D:\webfunds\java> ..\cvs commit TODO
    
   | 
| after any changes ... | 
    
         # change TODO
      $ cvs commit TODO
    
     | 
    
         ; write TODO
      D:\webfunds\java> ..\cvs commit TODO
    
   | 
| difference between repository and your copy | 
    
      $ cvs diff TODO
    
     | 
    
      D:\webfunds\java> ..\cvs diff TODO
    
 | 
Back to Index.