I am working with a team and we are trying to restructure our approach to managing our perforce depo. Our current solution is to maintain a separate "work" folder structure. Each person is limited to their own work folder a swell as discipline folder. We have people coming in and out of the project constantly so this way no one in art can mistakenly screw something up in programming. Once assets (this is a game) are done, they should be copied by one of the team leaders into the actual build. This way things can be kept clean and organized outside of the build itself does not get cluttered with peoples temporary files/solutions/code/etc. The issue that I have with this approach is that aspect that... we already have a copy of the file in our work structure. There is no reason to do a deep copy into the game folder. Is there a way to shadow copy the file into the game build from the asset which exists the personal folder of a user/group? We are using the visual (p4v) client.
Shadow Copying in Perforce?
727 Views Asked by Serguei Fedorov At
1
There are 1 best solutions below
Related Questions in PROJECT-MANAGEMENT
- How to get max of subseries in Pine script
- Tradingview Indicator from pine script v 2 to version 4
- How to make a variable true or false in the "if" function in pine editor?
- Plotting SMA and MA of RSI together
- How can i get the value of previous highest high in pinescript?
- Pine script Cannot call 'security' with arguments
- How to find the closest value in pinescript array?
- PineScript - How to compare a higher high to current price
- Exit from position in exact time
- How to calculate Heiken Chaiken Osc using pandas python
Related Questions in PERFORCE
- How to get max of subseries in Pine script
- Tradingview Indicator from pine script v 2 to version 4
- How to make a variable true or false in the "if" function in pine editor?
- Plotting SMA and MA of RSI together
- How can i get the value of previous highest high in pinescript?
- Pine script Cannot call 'security' with arguments
- How to find the closest value in pinescript array?
- PineScript - How to compare a higher high to current price
- Exit from position in exact time
- How to calculate Heiken Chaiken Osc using pandas python
Related Questions in BUILD-MANAGEMENT
- How to get max of subseries in Pine script
- Tradingview Indicator from pine script v 2 to version 4
- How to make a variable true or false in the "if" function in pine editor?
- Plotting SMA and MA of RSI together
- How can i get the value of previous highest high in pinescript?
- Pine script Cannot call 'security' with arguments
- How to find the closest value in pinescript array?
- PineScript - How to compare a higher high to current price
- Exit from position in exact time
- How to calculate Heiken Chaiken Osc using pandas python
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
On the depot side Perforce does lazy copying, so you only have one copy internally. That is, Perforce uses metadata and internal logic to fetch the file when users browse and sync. Only when someone changes the file does the depot contain the additional information regarding these changes. What this means is that you can branch very large file trees without requiring massive amount of storage for your depot.
As a side note (and for the sake of completeness), on the client side, when you branch into a new location, Perforce creates a local copy as a convenience to you. The assumption is simply that creating a new branch means you want to work on it right away. If this is not the case, or if you're branching a very large tree that would take up a great deal of storage on your hard drive, you can branch using the
-v
option (v stands for virtual), as follows:You can still retrieve the files by syncing to them afterwards.