现在的位置: 首页 > 综合 > 正文

p4 view mapping及其特殊字符

2012年03月08日 ⁄ 综合 ⁄ 共 1315字 ⁄ 字号 评论关闭


p4 view mapping及其特殊字符

 

p4 中三种view :client views, branch views, and label views.

 

注意:

1)如果view中对同一个文件有多次mapping,则后面的覆盖前面的mapping。

2)以-开始的mapping,用来排除文件的mapping,一般用来排除一些目录下的某些子目录或文件。

3)在client views中可以在mapping的最前面有+,表示叠加的效果,不同于一般的覆盖。

 

文件或路径中的空格:

//depot/v1/... "//ws/version one/..."

“//depot/document 2/..." //ws/document2/...

“-//depot/document 2/file2" //ws/document2/file2

 

文件或路径中的其他特殊字符: 

Character

ASCII expansion

@

%40

#

%23

*

%2A

%

%25

 

 

client view实例: 

 

Client View

Sample Mapping

Full client workspace mapped to entire depot

//depot/... //ws/...

Full client workspace mapped to part of depot

//depot/dir/... //ws/...

Some files in the depot aremapped to a different part of the client workspace

//depot/... //ws/...
//depot/rel1/... //ws/release1/...

Some files in the depot areexcluded from the client workspace

//depot/dir/... //ws/...
-//depot/dir/exclude/... //ws/dir/exclude/...

Files in the client workspace are mapped to different names than their depot names.

//depot/dir/old.* //ws/renamed/new.*

Portions of filenames in the depot are rearranged in the client workspace

//depot/dir/%%1.%%2 //ws/dir/%%2.%%1

The files do not map the same way in each direction. The second line takes precedence, and the first line is ignored.

//depot/dir1/... //ws/build/...
//depot/dir2/... //ws/build/...

An overlay mapping is used to map files from more than one depot directory into the same place in the workspace.

//depot/dir1/... //ws/build/...
+//depot/dir2/... //ws/build/..

抱歉!评论已关闭.