zoukankan      html  css  js  c++  java
  • cvs 状态码含义

    Code Meaning Description //z 2011-12-13 4:06 PM IS2120@CSDN
    ? what? It's not a file in CVS. CVS knows nothing about this file
    A Added This is a file you just added to CVS but not yet committed. You have to commit it before others can see it.
    C Conflicted A Conflict occurred when you did CVS update. The conflicted lines are marked with special characters and you need to manually resolve the conflicts.
    M Modified You have modified this file. It's different from what's in CVS and you need to commit (check in) the file to persist your changes in CVS
    P Patched This file was patched when you did CVS update. The effect is the same as U (update), but the changes were so small that CVS decided to send a patch (P) instead of a whole file (U).
    U Updated This file was updated when you ran CVS update. It could be a file that already existed on the local drive, or a new file brought down from the CVS repository.
    R Removed You asked CVS to remove this file but you haven't committed the removal.

    //z 2011-12-13 4:06 PM IS2120@CSDN
    ?    不在cvs中
    A    新增加(在本地增加了,但是还没有commit)
    C    冲突(发生冲突;可能两个人同时编辑了同一份文件)
    M    修改(修改但还未提交)
    P    补丁(类U;与U相比,传递更少的数据量)
    U    更新(更新本地文件或是新下载一个文件)
    R    删除(已删除文件但还未COMMIT)
    http://blog.csdn.net/is2120/article/details/7067286
    //z 2011-12-13 4:06 PM IS2120@CSDN


    //z 2011-12-13 4:06 PM IS2120@CSDN
    http://blog.csdn.net/is2120/article/details/7067286
  • 相关阅读:
    一周总结
    [z]OpenGL Wiki
    [Z]OpenCL Data Parallel Primitives Library
    [z]苹果用OpenCL实现的Parallel Prefix Sum
    指定VC中std::sort的比较函数时发生"invalid operator<"错误原因
    [z]FNV哈希算法
    [z]NViDIA用OpenCL实现的很多基础并行算法
    [z]一个基于CUDA的基础并行算法库
    [z]一个讲解很多OpenGL中基本概念的网站
    [Z]Marching Cubes的实现
  • 原文地址:https://www.cnblogs.com/IS2120/p/6745972.html
Copyright © 2011-2022 走看看