Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在svnCLI (AKA SlikSVN) 中,如何签出(更新)本地名称foo1.txt下的远程文件foo.txt?
svn
SlikSVN
为避免术语混淆,通过“签出(更新)”,我的意思是简单地从本地远程仓库下载文件,但已经有一个本地更改的版本,我不希望使用仓库中的版本进行更新。
您不能在 上更改名称svn co,但可以svn cat /URL/TO/FOO > foo1.txt(对于 SVN 文件,它将是未知的版本)
svn co
svn cat /URL/TO/FOO > foo1.txt
PS - 在 SVN 中维护并发更改的更好方法是很好的分支