Changeset 145 for trunk/IPs/systemC/processor/Morpheo/Script/version.sh
- Timestamp:
- Oct 13, 2010, 8:15:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Script/version.sh
r138 r145 7 7 function usage () 8 8 { 9 echo "Usage : ${0} action";10 echo "Arguments : ";9 echo "Usage : ${0} action"; 10 echo "Arguments : "; 11 11 echo " * action"; 12 echo " * add : add all file unpresent in project and set proprity"; 13 echo " * commit : update revision number and commit"; 14 echo " * status : print only locally modified items"; 15 echo " * status_new : print only locally new items"; 16 echo " * status_delete : print only locally new items"; 17 echo " * help : print this message"; 18 echo "Note :"; 12 echo " * add : add all file unpresent in project and set proprity"; 13 echo " * commit : update revision number and commit"; 14 echo " * status : print only locally modified items"; 15 echo " * status_new : print only locally new items"; 16 echo " * status_delete : print only locally new items"; 17 echo " * local_status_new : print only locally new items"; 18 echo " * local_status_delete : 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; … … 96 98 cd ${pwd}; 97 99 ;; 100 101 "local_status_new") 102 #cd ${MORPHEO_TOPLEVEL}; 103 104 svn status | grep '?'; 105 106 #cd ${pwd}; 107 ;; 108 109 "local_status_delete") 110 #cd ${MORPHEO_TOPLEVEL}; 111 112 svn status | grep '!'; 113 114 #cd ${pwd}; 115 ;; 98 116 99 117 "help")
Note: See TracChangeset
for help on using the changeset viewer.