1
我得到這個錯誤,而試圖刪除一個名爲客戶端「測試」:在無法刪除客戶端
Client 'test' has files opened. To delete the client, revert any opened files and delete any pending changes first. An administrator may specify -f to force the delete of another user's client.
我嘗試p4 opened
它表明:
//TestRepo/test/TestA.java#1 - edit default change (ktext)
//TestRepo/test/TestB.java#1 - edit default change (ktext)
如何刪除這些文件,以便我能夠刪除客戶端?
謝謝你jamesdlin。我嘗試了你的建議,現在它說「打開這個客戶端時沒有打開文件」,當我輸入'p4 opened'時,這很好。但由於此錯誤,我仍然無法刪除客戶端:「客戶端測試」有未決更改。要刪除客戶端,請先刪除所有待處理的更改。管理員可以指定-f強制刪除另一個用戶的客戶端。# –
@DaoLam:運行'p4 changes -s pending'來獲取客戶端的未決變更列表,然後運行'p4 change -d CLN'到刪除每個變更集。 – jamesdlin