Tags: cvs

Sort by: Date / Title /

  1. 1 year ago by spirit
    1. cvs rdiff -s -r tag-1.0 -r tag-1-1 module_name 2> nul
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1762"></script>
  2. 1 year ago by benoitbalon
    1. # Ajout de repertoires et de fichiers a CVS
    2. cvs add $repertoire_1 $repertoire_2
    3. cvs add -ko $fichier_binaire_1 $fichier_binaire_2
    4. cvs add $fichier_ascii_1 $fichier_ascii_2
    5.  
    6. # Publication de ses changements
    7. cvs commit -m 'Ici mon commentaire' $fichier
    8.  
    9. # Consultation de l'historique d'un fichier
    10. cvs log $fichier
    11.  
    12. # Comparaison de fichiers ou de repertoires
    13. cvs diff $repertoire/
    14. cvs diff $fichier
    15. cvs diff -rX.xx -rY.yy $fichier
    16.  
    17. # Mise a jour de sa version avec celle en CVS
    18. cvs update $repertoire/
    19. cvs update $fichier
    20.  
    21. # Recuperation d'une ancienne version en CVS (sans ecraser l'actuelle !)
    22. cvs update -p -rX.xx $fichier > $fichier_tmp
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1511"></script>
  3. 2 years ago by cyo
    Informations issues de la FAQ d'Eclipsepedia :
    
    Why do all my files show as outgoing changes?
    
    The CVS plugin uses timestamps of the files on disk to track the modification state of versioned
    files. As a result, there are some cases where Windows users may find that as a result of either
    (1) an automatic daylight savings change or (2) moving files between file systems, that all the
    files show up as outgoing changes. See Bug 5337
    (https://bugs.eclipse.org/bugs/show_bug.cgi?id=5337) for an explanation of the problem and
    workarounds. Thers is a utility action that will reset the timestamps so the files are in-sync with
    CVS. Be warned however that this utility resets the timestamps for any file whose timestamp differs
    from the sync timestamp by 1 hour. There is a possibility that this could reset a file that is
    really dirty. Use at your own risk. To use the action, install the plugin found here :
    http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-vcm-home/plugins/fixtimestamps.zip
    and them run the CVS Util/Fix Timestamps command available from the context menu of the Resource
    Navigator.
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/858"></script>
  4. sponsorised links

First / Previous / Next / Last / Page 1 of 1 (3 posteets)