All Projects → Unity-Technologies → NativeVersionControlPlugins

Unity-Technologies / NativeVersionControlPlugins

Licence: other
Version Control (Perforce, PlasticSCM) plugins for Unity

Programming Languages

C++
36643 projects - #6 most used programming language
C#
18002 projects
c
50402 projects - #5 most used programming language
perl
6916 projects
Gnuplot
187 projects
shell
77523 projects

Projects that are alternatives of or similar to NativeVersionControlPlugins

powerbi-vcs
WIP (properly) version control and collaborate on your *.pbi{tx} files
Stars: ✭ 78 (+212%)
Mutual labels:  version-control
Reproducibilidad
Reproducible Science: what, why, how
Stars: ✭ 39 (+56%)
Mutual labels:  version-control
rhq
Manages your local repositories
Stars: ✭ 48 (+92%)
Mutual labels:  version-control
nb-clean
Clean Jupyter notebooks of outputs, metadata, and empty cells, with Git integration
Stars: ✭ 72 (+188%)
Mutual labels:  version-control
Exact
An open source online platform for collaborative image labeling of almost everything
Stars: ✭ 47 (+88%)
Mutual labels:  version-control
p4python
[Officially Supported] P4Python is a wrapper for the P4 C++ API in Python.
Stars: ✭ 30 (+20%)
Mutual labels:  perforce
OctoPrint-GitFiles
With this plugin, you can use a github/gitlab repository for keeping your OctoPrint Files collection up-to-date.
Stars: ✭ 28 (+12%)
Mutual labels:  version-control
Squot
Squeak Object Tracker - Version control for arbitrary objects, currently with Git storage
Stars: ✭ 45 (+80%)
Mutual labels:  version-control
gradle-GitVersioner
generates a project version for the given git project to distinguish between builds
Stars: ✭ 80 (+220%)
Mutual labels:  version-control
speckle-unity
AEC Interoperability for Unity through Speckle
Stars: ✭ 28 (+12%)
Mutual labels:  version-control
python-aos-lesson
Python for Atmosphere and Ocean Scientists
Stars: ✭ 78 (+212%)
Mutual labels:  version-control
versionaire
Provides an immutable, thread-safe, and semantic version type.
Stars: ✭ 71 (+184%)
Mutual labels:  version-control
mummify
Version Control for Machine Learning
Stars: ✭ 43 (+72%)
Mutual labels:  version-control
AutoVer
Configurable automatic or real time backup and personal versioning system
Stars: ✭ 65 (+160%)
Mutual labels:  version-control
git-history-flow
Visualize the evolution of a file tracked by git
Stars: ✭ 17 (-32%)
Mutual labels:  version-control
pro.fessional.wings
WingsBoot=BKB+飞鞋+SpringBoot。其核心价值是:①使团队快速实现业务目标;②快速偿还技术债务;③安全的面向程序和业务重构。
Stars: ✭ 78 (+212%)
Mutual labels:  version-control
lambdacd-git
Git support for LambdaCD
Stars: ✭ 18 (-28%)
Mutual labels:  version-control
straight.el
🍀 Next-generation, purely functional package manager for the Emacs hacker.
Stars: ✭ 2,035 (+8040%)
Mutual labels:  version-control
anchor
Create Dynamic CLI's as your GitOps Marketplace
Stars: ✭ 38 (+52%)
Mutual labels:  version-control
kart
Distributed version-control for geospatial and tabular data
Stars: ✭ 253 (+912%)
Mutual labels:  version-control

NativeVersionControlPlugins

About

This is the source code of the built-in version control plugins that are shipped with Unity.

You can build support for you own favourite version control system into Unity by cloning this repository and make changes as needed.

Note that only Perforce support is shipped for Unity 4.2+, TFSPlugin for 4.6+.

Overview

A plugin is an executable located in a designated directory that Unity can start and kill at will. At startup, Unity will scan the directory and start each executable in order to identify the plugin and its settings. When a version control system has been enabled in unity it will start the associated plugin executable and send commands to it by using stdin/stdout (MacOS) or Named Pipes (Windows).

The Perforce plugin is using the libraries provided by Perforce and its callback style API. Furthermore, is streams results from the perforce server directly to Unity.

You need Unity 4.2+ to use the integrated version control plugins.

Structure

  • Common/ contains structures and functionallity common to all plugins
  • P4Plugin/ contains the Perforce plugin code and Perforce libraries (binaries shipped with Unity)
  • TFSPlugin/ contains the Team Foundation Server/VS Online plugin code
  • Test/ contains integration tests

To build:

perl ./build.pl  

To test:

perl ./build.pl -test

You need to clone PerforceBinaries from mercurial to get the binaries you will run the tests on. You can execute this command from NativeVersionControlPlugins root:

hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries

Steps for setting up Mercurial can be found here: Setting Up Mercurial

 Perforce

The Perforce plugin source code is located under /P4Plugin/Source. It references the Perforce APIs, located under /P4Plugin/Source/r19.1. As its name states, we're targeting the 19.1 release of Perforce.

Perforce API includes and libraries were downloaded from the Perforce downloads page.

 Windows

Windows binaries are located under /P4Plugin/Source/r17.2/lib/win32 and /P4Plugin/Source/r17.2/lib/win32debug.

Both directories contain libraries for Win32 - x86 only. They require Visual Studio v10.0 (2010).

License and terms

The plugin code itself is licensed under public domain.

Libraries used by the plugin have their own licenses and are allowed to be distributed with the plugin.

The PerforcePlugin uses the P4 API. For more information on terms of usage and how to get the P4 API, visit the following links:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].