2016-03-21 66 views
1

我正在使用Perforce 2015.2。我使用類似於以下命令將我的工作區附加到Perforce流:如何從流中分離?

p4 client -s -S //Product/Main 

現在我想從流中分離工作區。我想:

p4 client -s -S // 

但得到了一個錯誤:

Stream '//' is not the correct format of '//depotname/string'

我怎樣才能從我的工作區分離從流?

回答

1

通過「從工作空間中分離我的工作空間」,我假設你的意思是你希望工作空間停止引用流的文件,而是要引用非流存儲庫中的一組文件。

所以:

  1. p4 client帶給您的客戶端規格在編輯器中
  2. 刪除讀取行:Stream: //Product/Main
  3. 更改下面View:的線條看起來像:

    // Product/Main/... // my-client/...

,而不是閱讀:

//depot/some/path/... //my-client/some/path/... 
  • 保存並關閉你的編輯器。