0

我们正在使用 SVN 为团队创建文件部署应用程序。这是我们想要做的新场景,

User creates folder1 and checks it in
User creates folder2 and checks it in (rev2 now)
User creates folder3 and checks it in (rev3 now)

此时,用户认为他需要回到修订版 1。所以我们这样做

svn co -r 1 

用户希望只看到文件夹 1,而不是文件夹 2 和文件夹 3。这是可行的吗?我们在 Linux 命令行上创建脚本,因此我们将无法使用 SVN 客户端。只有 SVN 命令。

谢谢您的帮助。

4

1 回答 1

1

如果 User1 已经有工作副本并且想要返回到以前的某个版本,他必须使用update,而不是checkout

>svn help up
update (up): Bring changes from the repository into the working copy.
usage: update [PATH...]

  If no revision is given, bring working copy up-to-date with HEAD rev.
  Else synchronize working copy to revision given by -r.
于 2013-08-03T05:49:31.557 回答