Best Practice
|
Additional Information
|
Use GitHub Desktop.
|
We recommend using GitHub Desktop when collaborating on your projects to simplify your workflow. For more information, see https://desktop.github.com/.
|
Create one repository per project.
|
Create one repository in GitHub for each Vuforia Studio project you want to collaborate on.
|
Develop standard naming conventions for projects.
|
To allow for quick filtering of projects, develop and use a standard naming convention. For example, using a <group>_<project> format may be helpful.
|
Utilize the gitignore file that already exists in your project folder.
|
Your project directory contains a .gitignore file that you can use to specify files that you do not want to track. For example, the upgrade.log file can be added to .gitignore.
|
Use Git LFS to help manage binary files such as PVZ models, images, and any binary assets.
For general information on using large files in Git, see Managing large files in GitHub Docs.
|
|
Have only one user at a time actively making updates to the project or at the very least one user working on one view at a time.
|
To avoid overwriting work or dealing with merge issues in GitHub, we recommend that only one user at a time work on the project. Or, at the very least, we recommend that only one user at a time work on a particular view. For example, if an experience contains three different views, have one user work on View 1 and another user work on View 3 if they must work on the project at the same time.
|