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?
746 Views Asked by Serguei Fedorov At
1
There are 1 best solutions below
Related Questions in PROJECT-MANAGEMENT
- How to correctly work on a GreaseMonkey userscript using git?
- continuous integration - build separated projects or build all in one?
- MS-Access form: Is it possible to create a Gantt chart and dynamic timeline?
- MS Project - Adding multiples of the same resources to multiple concurrent tasks
- Cannot add embedded binaries (other projects) to project dependencies in XCode
- IntelliJ IDEA not showing my module/project
- How to arrange / manage methods of different functionality in a big project
- Team based project management software using .NET
- PM getting a feel for the time a Drupal site takes
- V-Modell-XT: creating new project: "missing file V-Modell-XT.xml" (model files missing / installer is needed)
- V-Modell XT installer: "installation failed" error / missing proxy settings and how to provide them
- Best way too separate out classes, VS 2013
- Visual-Studio tutorial on how to make all code in one directory and all sln and proj stuff in another?
- Problems organising multiple projects with Git
- What are the different Work Items in Team Foundation Server used for?
Related Questions in PERFORCE
- Perforce workspaces and multiple branches
- Perforce won't branch over deleted files
- How can I query Perforce for a list of users who have workspaces that reference a particular file in the depot?
- is there a way to find all the perforce workspaces which are mapping a certain file in the depot?
- Have teamcity checkout on build agent machine
- Perforce - switch to workspace from command line
- git p4 sync - where did the perforce changes go?
- Can I apply changes from a perforce patch(downloaded from review board) to my code
- Data integrity before migration
- Associate specific paths in Atlassian Fisheye with Perforce branch mappings
- Unity & P4Connect
- Perforce how to Read the branch mapping from standard input without invoking an editor
- Facing issue with jenkins: label name not recognized by sync command
- Gradle 'maven-publish' plugin fails with "unmappable character for encoding" error
- Perforce to git migration
Related Questions in BUILD-MANAGEMENT
- TFS Build CopyDirectory error not stopping build
- Would it be a bad practice to manage deployments through Jenkins?
- It cannot be determined, which agent will be used for which build configuration in parallel Multi-config builds
- Multiple commands with Maven Exec plugin
- Automating builds from subversion tags
- Differences between Ant and Maven
- How to see changes without building maven project?
- Legacy C++ project using Makefile ..moving to Eclipse IDE?
- Maven: build tasks (updating/copying files etc) outside lifecycle?
- Code Management ,different code for different environment under same package
- Project management/build tools for a Django project?
- HA Jenkins setup
- Shadow Copying in Perforce?
- Multi platform build & CI server
- Need primer for a Msbuild newbie
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 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
-voption (v stands for virtual), as follows:You can still retrieve the files by syncing to them afterwards.