I have a file in one branch //depot/Dest/file1.txt and other branch is //depot/Src/
I want to have a symbolic link from //depot/Src/file1.txt pointing to //depot/Dest/file1.txt by using p4v .
Can I do that using p4v ?
I have a file in one branch //depot/Dest/file1.txt and other branch is //depot/Src/
I want to have a symbolic link from //depot/Src/file1.txt pointing to //depot/Dest/file1.txt by using p4v .
Can I do that using p4v ?
Option 1: Use streams. Stream definitions let you have a single depot file shared among multiple streams via the "import" path type.
Stream: //depot/Src
Paths:
share ...
Stream: //depot/Dest
Parent: //depot/Src
Paths:
share ...
import file1.txt
Option 2: Create an OS symlink and add it to the depot. I believe you can do this with a file as well as with a directory.