zoukankan      html  css  js  c++  java
  • svn 常用命令

    检出项目:
    svn.exe checkout https://song/svn/test/ testsvn --username=test  (只需要第一次输入密码,以后会自动保存)
    
    //更改文件名  相当于copy delete  此时还没有提交到服务端哦
    svn mv a.txt b.txt
    
    //提交更改
    svn commit -m "rename a.txt"
    
    
    svn地址的多种形式
    svn://
    http://
    file://
    https://
    svn+ssh://
    
    svn.exe status  查看文件的状态
    A add in your working copy
    D delete in your working copy
    I ignored in your working copy
    M modify in your working copy
    ? not under version control
    ! miss from your working copy(手工删除文件,还没有提交)
  • 相关阅读:
    逻辑回归
    异常
    内部类
    接口
    多态
    final关键字(最终的)
    不能被继承的父类成员
    对象初始化的过程
    方法重写
    abstract关键字
  • 原文地址:https://www.cnblogs.com/siqi/p/3655219.html
Copyright © 2011-2022 走看看