Rinominare file con CVS

Rinominare un file presente nel repository.

Rinominare un file su un repository CVS consiste sostanzialmente in tre operazioni:
- un move per rinominare il file in locale;
- un cvs remove per rimuovere il file dal repository;
- un cvs add per inserire il nuovo (in quanto per CVS il file č come se fosse nuovo) file;
Infine č necessario un commit per rendere effettive le modifiche sul repository.

[azitti@pegasus EnigmaWebSite]$ mv index.htm index.php
[azitti@pegasus EnigmaWebSite]$ cvs remove index.htm
cvs remove: scheduling `index.htm' for removal
cvs remove: use 'cvs commit' to remove this file permanently
[azitti@pegasus EnigmaWebSite]$ cvs add index.php
cvs add: scheduling file `run-fruition.sh' for addition
cvs add: use 'cvs commit' to add this file permanently
[azitti@pegasus EnigmaWebSite]$ cvs commit -m "Rinominato index.htm in index.php" index.htm index.php
Removing index.htm;
/home/cvs/EnigmaWebSite/index.htm,v  <--  index.htm
new revision: delete; previous revision: 1.4
done
RCS file: /home/cvs/EnigmaWebSite/index.php,v
done
Checking in index.php;
/home/cvs/EnigmaWebSite/index.php,v  <--  index.php
initial revision: 1.1
done

Privacy Policy