Unity SVN 常用命令行

2022-07-27  本文已影响0人  CERI_CHANNEL

清理

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
上一篇 下一篇

猜你喜欢

热点阅读