4

在 Perforce 中,如何恢复对文件所做的更改?

$ p4 status
UI\FormMain.cs - reconcile to edit //UI/FormMain.cs#73

$ p4 revert UI/FormMain.cs
UI/FormMain.cs - file(s) not opened on this client.

在 Git 中,我使用命令来执行此操作git checkout

$ git status
# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   Form.cs
#
no changes added to commit (use "git add" and/or "git commit -a")

$ git checkout Form.cs

$ git status
# On branch master
nothing to commit, working directory clean
4

2 回答 2

5

如果文件未打开,但您已在本地对其进行了更改,请使用

p4 sync -f UI/FormMain.cs

告诉 Perforce 强制 (-f) 将您机器上的 FormMain.cs 副本与服务器上的版本同步。

于 2013-01-07T14:40:00.297 回答
0

而不是p4 revert UI/FormMain.cs你应该打电话p4 revert //UI/FormMain.cs,因为那是仓库表示法的绝对路径。没有前导//的文件标记相对于您在客户端工作区中的当前位置的文件。

于 2013-01-07T11:49:01.557 回答