Unity SVN 常用命令行

清理

svn cleanup {clean_path} --username {user} --password {password}


解决冲突使用他人的版本

svn resolve -R --accept theirs-full {path} --username {user} --password {password}


解决冲突使用工作区版本

svn resolve -R --accept working {path} --username {user} --password {password}


还原

svn revert -R -q {path} --username {user} --password {password}


更新,使用他人版本

svn update --accept theirs-full {path} --username {user} --password {password}


获取差异

svn diff -r {l_version}:{r_version} --summarize {path} --username {user} --password {password}


获取状态

svn status {file_path} --username {user} --password {password}


提交

svn commit {file_path} -m \"{commit_message}\"


参数:

清理路径 svn路径 用户名 密码 左版本号 右版本号 文件路径 提交信息
string string string string string string string string
clean_path path user password l_version r_version file_path commit_message
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容