Changeset 83 for trunk/IPs/systemC/processor/Morpheo/Script/version.sh
- Timestamp:
- May 9, 2008, 8:00:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Script/version.sh
r82 r83 10 10 function usage () 11 11 { 12 echo "Usage : ${0} action"; 13 echo "Arguments : "; 14 echo " * action"; 15 echo " * add : add all file unpresent in project and set proprity"; 16 echo " * commit : update revision number and commit"; 17 echo " * help : print this message"; 18 echo "Note :"; 12 echo "Usage : ${0} action"; 13 echo "Arguments : "; 14 echo " * action"; 15 echo " * add : add all file unpresent in project and set proprity"; 16 echo " * commit : update revision number and commit"; 17 echo " * status : print only locally modified items"; 18 echo " * status_new : print only locally new items"; 19 echo " * help : print this message"; 20 echo "Note :"; 19 21 echo " * Morpheo's environnement must be positionned."; 20 22 exit; … … 64 66 cd ${pwd}; 65 67 ;; 68 69 "status") 70 cd ${MORPHEO_TOPLEVEL}; 71 72 svn status; 73 74 cd ${pwd}; 75 ;; 76 77 "status_new") 78 cd ${MORPHEO_TOPLEVEL}; 79 80 svn status | grep '?'; 81 82 cd ${pwd}; 83 ;; 84 66 85 "help") 67 86 usage ${*};
Note: See TracChangeset
for help on using the changeset viewer.