├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .yamato ├── build.yml ├── publish.yml └── test.yml ├── .yamato_config └── config.yml ├── BUILD.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitForUnity.sln ├── GitForUnity.sln.DotSettings ├── GitForUnity.v3.ncrunchsolution ├── LICENSE.md ├── README.md ├── UnityProject ├── .gitignore ├── Git for Unity - Api │ ├── .gitignore │ ├── Assets │ │ ├── .gitignore │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── BaseWindow.cs │ │ │ ├── BaseWindow.cs.meta │ │ │ ├── DugiteManifestWindow.cs │ │ │ └── DugiteManifestWindow.cs.meta │ ├── Packages │ │ └── manifest.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── XRSettings.asset │ │ └── graphicssettings.asset ├── Git for Unity - Full │ ├── .gitignore │ ├── Assets │ │ └── .gitignore │ ├── Packages │ │ └── manifest.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── XRSettings.asset │ │ └── graphicssettings.asset ├── Git for Unity - Package │ ├── .gitignore │ ├── Assets │ │ └── .gitignore │ ├── Packages │ │ └── manifest.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── XRSettings.asset │ │ └── graphicssettings.asset └── Git for Unity - UI │ ├── .gitignore │ ├── Assets │ └── .gitignore │ ├── Packages │ └── manifest.json │ └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── XRSettings.asset │ └── graphicssettings.asset ├── build.cmd ├── build.sh ├── clean.sh ├── common ├── .gitignore ├── SolutionInfo.cs ├── codeanalysis-debug.ruleset ├── codeanalysis-release.ruleset ├── nativelibraries.props ├── nuget.exe ├── packageversionfiles.targets ├── packaging.props ├── packaging.targets ├── properties.props ├── tests.props ├── unitypackaging.targets └── unityreferences.targets ├── docs ├── contributing │ ├── how-to-build.md │ ├── how-to-test.md │ ├── styleguide.md │ ├── tooling.md │ └── troubleshooting.md ├── internals │ └── threading.md ├── process │ ├── issue-triage.md │ ├── release-process.md │ ├── reviews.md │ └── roadmap.md ├── readme.md └── using │ ├── authenticating-to-github.md │ ├── getting-started.md │ ├── how-to-install-and-update.md │ ├── images │ ├── branches-initial-view.png │ ├── changes-view.png │ ├── confirm-pull-changes.png │ ├── confirm-push-changes.png │ ├── confirm-revert.png │ ├── create-new-branch-view.png │ ├── delete-dialog.png │ ├── github-authenticate.png │ ├── github-menu-item.png │ ├── github-sign-in-button.png │ ├── github-two-factor.png │ ├── locked-scene.png │ ├── locks-view-right-click.png │ ├── locks-view.png │ ├── name-branch.png │ ├── new-branch-created.png │ ├── post-commit-view.png │ ├── post-push-history-view.png │ ├── pull-view.png │ ├── push-view.png │ ├── release-lock.png │ ├── request-lock.png │ ├── revert-commit.png │ ├── revert.png │ ├── success-pull-changes.png │ ├── success-push-changes.png │ ├── switch-confirmation.png │ ├── switch-or-delete.png │ └── switched-branches.png │ ├── locking-files.md │ ├── managing-branches.md │ ├── quick-guide.md │ ├── using-the-api.md │ └── working-with-changes.md ├── extras ├── com.unity.git.api │ ├── Api │ │ └── Version.cs.meta │ └── Tests │ │ ├── Api.meta │ │ ├── Api │ │ └── Version.cs.meta │ │ ├── package.json │ │ └── package.json.meta ├── com.unity.git.ui │ ├── Editor │ │ └── Version.cs.meta │ └── Tests │ │ ├── Editor │ │ └── Version.cs.meta │ │ ├── package.json │ │ └── package.json.meta └── com.unity.git │ ├── Api.meta │ ├── Editor │ └── Version.cs.meta │ ├── Localization.meta │ ├── Mono.Posix.meta │ ├── Shim.meta │ ├── Tests │ ├── Editor │ │ └── Version.cs.meta │ ├── package.json │ └── package.json.meta │ ├── com.unity.editor.tasks.meta │ └── sfw.meta ├── global.json ├── hMSBuild.bat ├── lib ├── .gitignore ├── AsyncBridge.Net35.0.2.3333.0.nupkg ├── AsyncBridge.Net35.Repackaged.0.2.4-custom.nupkg ├── Custom.Unity.NETFramework.ReferenceAssemblies.net35.1.0.1-custom.nupkg ├── Managed │ └── .gitignore ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.dll ├── Mono.Posix.dll ├── TaskParallelLibrary.1.0.3333.0.nupkg ├── TaskParallelLibrary.Repackaged.1.0.4-custom.nupkg ├── Unity.Editor.Tasks.xml ├── Unity.NETFramework.ReferenceAssemblies.net35.1.0.0.nupkg ├── UnityExtensions │ └── Unity │ │ └── TestRunner │ │ └── Editor │ │ └── .gitignore ├── com.unity.editor.tasks.1.2.23.nupkg ├── com.unity.editor.tasks.1.2.23.snupkg ├── com.unity.process-server.client.0.1.23-preview.nupkg ├── com.unity.process-server.client.0.1.25-preview.nupkg ├── com.unity.process-server.client.0.1.26-preview.nupkg ├── com.unity.process-server.interfaces.0.1.23-preview.nupkg ├── com.unity.process-server.interfaces.0.1.25-preview.nupkg ├── com.unity.process-server.interfaces.0.1.26-preview.nupkg ├── com.unity.process-server.server.0.1.23-preview.nupkg ├── com.unity.process-server.server.0.1.25-preview.nupkg ├── com.unity.process-server.server.0.1.26-preview.nupkg ├── com.unity.rpc.1.0.11-preview.nupkg ├── com.unity.rpc.hosted.1.0.11-preview.nupkg ├── com.unity.rpc.interfaces.1.0.11-preview.nupkg ├── deps.zip ├── nunit.core.dll ├── nunit.core.interfaces.dll ├── nunit.framework.dll └── pdb2mdb.exe ├── nuget.config ├── pack.cmd ├── pack.sh ├── packaging ├── create-unity-packages │ ├── .editorconfig │ ├── .yarnrc │ ├── async-dump.js │ ├── helpers.ps1 │ ├── package.json │ ├── run.ps1 │ ├── run.sh │ ├── src │ │ ├── .gitignore │ │ ├── RecursiveReaddir.ts │ │ ├── TreeWalker.ts │ │ ├── cmdlineoptions.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── packager.ts │ │ ├── packmanPackager.ts │ │ ├── read-lines.ts │ │ ├── unityPackager.ts │ │ ├── updateManifest.ts │ │ ├── upmPackager.ts │ │ └── zip.ts │ ├── tests │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── readlines.spec.ts │ │ ├── small-text.txt │ │ ├── text_eol_crlf.txt │ │ ├── text_eol_lf.txt │ │ └── text_eol_mix.txt │ ├── tsconfig.json │ ├── tslint.json │ ├── update.ps1 │ ├── update.sh │ ├── vendor │ │ └── cache │ │ │ ├── @types-archiver-3.0.0.tgz │ │ │ ├── @types-chai-4.1.7.tgz │ │ │ ├── @types-chai-as-promised-7.1.0.tgz │ │ │ ├── @types-events-3.0.0.tgz │ │ │ ├── @types-glob-7.1.1.tgz │ │ │ ├── @types-image-size-0.7.0.tgz │ │ │ ├── @types-minimatch-3.0.3.tgz │ │ │ ├── @types-mocha-5.2.7.tgz │ │ │ ├── ansi-colors-3.2.3.tgz │ │ │ ├── ansi-regex-2.1.1.tgz │ │ │ ├── ansi-regex-3.0.0.tgz │ │ │ ├── ansi-regex-4.1.0.tgz │ │ │ ├── aproba-1.2.0.tgz │ │ │ ├── archiver-3.1.1.tgz │ │ │ ├── archiver-utils-2.1.0.tgz │ │ │ ├── are-we-there-yet-1.1.5.tgz │ │ │ ├── arrify-1.0.1.tgz │ │ │ ├── assertion-error-1.1.0.tgz │ │ │ ├── async-2.6.3.tgz │ │ │ ├── axios-0.19.0.tgz │ │ │ ├── base64-js-1.3.1.tgz │ │ │ ├── bl-1.2.2.tgz │ │ │ ├── bl-3.0.0.tgz │ │ │ ├── browser-stdout-1.3.1.tgz │ │ │ ├── buffer-5.2.1.tgz │ │ │ ├── buffer-alloc-1.2.0.tgz │ │ │ ├── buffer-alloc-unsafe-1.1.0.tgz │ │ │ ├── buffer-crc32-0.2.13.tgz │ │ │ ├── buffer-fill-1.0.0.tgz │ │ │ ├── buffer-from-1.1.1.tgz │ │ │ ├── camelcase-5.3.1.tgz │ │ │ ├── chai-4.2.0.tgz │ │ │ ├── chai-as-promised-7.1.1.tgz │ │ │ ├── chalk-2.4.2.tgz │ │ │ ├── check-error-1.0.2.tgz │ │ │ ├── chownr-1.1.2.tgz │ │ │ ├── cliui-4.1.0.tgz │ │ │ ├── code-point-at-1.1.0.tgz │ │ │ ├── color-3.1.2.tgz │ │ │ ├── color-name-1.1.4.tgz │ │ │ ├── color-string-1.5.3.tgz │ │ │ ├── compress-commons-2.1.1.tgz │ │ │ ├── console-control-strings-1.1.0.tgz │ │ │ ├── core-util-is-1.0.2.tgz │ │ │ ├── crc-3.8.0.tgz │ │ │ ├── crc32-stream-3.0.1.tgz │ │ │ ├── cross-spawn-6.0.5.tgz │ │ │ ├── debug-3.1.0.tgz │ │ │ ├── debug-3.2.6.tgz │ │ │ ├── decamelize-1.2.0.tgz │ │ │ ├── decompress-response-3.3.0.tgz │ │ │ ├── deep-eql-3.0.1.tgz │ │ │ ├── define-properties-1.1.3.tgz │ │ │ ├── delegates-1.0.0.tgz │ │ │ ├── detect-libc-1.0.3.tgz │ │ │ ├── emoji-regex-7.0.3.tgz │ │ │ ├── end-of-stream-1.4.1.tgz │ │ │ ├── es-abstract-1.13.0.tgz │ │ │ ├── es-to-primitive-1.2.0.tgz │ │ │ ├── execa-1.0.0.tgz │ │ │ ├── expand-template-2.0.3.tgz │ │ │ ├── find-up-3.0.0.tgz │ │ │ ├── flat-4.1.0.tgz │ │ │ ├── follow-redirects-1.5.10.tgz │ │ │ ├── fs-constants-1.0.0.tgz │ │ │ ├── fs-copy-file-sync-1.1.1.tgz │ │ │ ├── function-bind-1.1.1.tgz │ │ │ ├── gauge-2.7.4.tgz │ │ │ ├── get-caller-file-1.0.3.tgz │ │ │ ├── get-caller-file-2.0.5.tgz │ │ │ ├── get-func-name-2.0.0.tgz │ │ │ ├── get-stream-4.1.0.tgz │ │ │ ├── github-from-package-0.0.0.tgz │ │ │ ├── glob-7.1.4.tgz │ │ │ ├── graceful-fs-4.2.1.tgz │ │ │ ├── growl-1.10.5.tgz │ │ │ ├── has-1.0.3.tgz │ │ │ ├── has-symbols-1.0.0.tgz │ │ │ ├── has-unicode-2.0.1.tgz │ │ │ ├── he-1.2.0.tgz │ │ │ ├── ieee754-1.1.13.tgz │ │ │ ├── image-size-0.7.4.tgz │ │ │ ├── image-thumbnail-1.0.4.tgz │ │ │ ├── inherits-2.0.3.tgz │ │ │ ├── inherits-2.0.4.tgz │ │ │ ├── ini-1.3.5.tgz │ │ │ ├── invert-kv-2.0.0.tgz │ │ │ ├── is-arrayish-0.3.2.tgz │ │ │ ├── is-buffer-2.0.3.tgz │ │ │ ├── is-callable-1.1.4.tgz │ │ │ ├── is-date-object-1.0.1.tgz │ │ │ ├── is-fullwidth-code-point-1.0.0.tgz │ │ │ ├── is-fullwidth-code-point-2.0.0.tgz │ │ │ ├── is-regex-1.0.4.tgz │ │ │ ├── is-stream-1.1.0.tgz │ │ │ ├── is-symbol-1.0.2.tgz │ │ │ ├── isarray-1.0.0.tgz │ │ │ ├── isexe-2.0.0.tgz │ │ │ ├── js-yaml-3.13.1.tgz │ │ │ ├── lazystream-1.0.0.tgz │ │ │ ├── lcid-2.0.0.tgz │ │ │ ├── locate-path-3.0.0.tgz │ │ │ ├── lodash-4.17.11.tgz │ │ │ ├── lodash-4.17.15.tgz │ │ │ ├── lodash.defaults-4.2.0.tgz │ │ │ ├── lodash.difference-4.5.0.tgz │ │ │ ├── lodash.flatten-4.4.0.tgz │ │ │ ├── lodash.isplainobject-4.0.6.tgz │ │ │ ├── lodash.union-4.6.0.tgz │ │ │ ├── log-symbols-2.2.0.tgz │ │ │ ├── map-age-cleaner-0.1.3.tgz │ │ │ ├── mem-4.3.0.tgz │ │ │ ├── mimic-fn-2.1.0.tgz │ │ │ ├── mimic-response-1.0.1.tgz │ │ │ ├── minimist-1.2.0.tgz │ │ │ ├── minizlib-1.2.1.tgz │ │ │ ├── mocha-6.1.4.tgz │ │ │ ├── ms-2.0.0.tgz │ │ │ ├── ms-2.1.1.tgz │ │ │ ├── ms-2.1.2.tgz │ │ │ ├── nan-2.14.0.tgz │ │ │ ├── napi-build-utils-1.0.1.tgz │ │ │ ├── nice-try-1.0.5.tgz │ │ │ ├── node-abi-2.9.0.tgz │ │ │ ├── node-environment-flags-1.0.5.tgz │ │ │ ├── noop-logger-0.1.1.tgz │ │ │ ├── normalize-path-3.0.0.tgz │ │ │ ├── npm-run-path-2.0.2.tgz │ │ │ ├── npmlog-4.1.2.tgz │ │ │ ├── number-is-nan-1.0.1.tgz │ │ │ ├── object-assign-4.1.1.tgz │ │ │ ├── object-keys-1.1.1.tgz │ │ │ ├── object.assign-4.1.0.tgz │ │ │ ├── object.getownpropertydescriptors-2.0.3.tgz │ │ │ ├── os-homedir-1.0.2.tgz │ │ │ ├── os-locale-3.1.0.tgz │ │ │ ├── os-tmpdir-1.0.2.tgz │ │ │ ├── p-defer-1.0.0.tgz │ │ │ ├── p-finally-1.0.0.tgz │ │ │ ├── p-is-promise-2.1.0.tgz │ │ │ ├── p-limit-2.2.0.tgz │ │ │ ├── p-locate-3.0.0.tgz │ │ │ ├── p-try-2.2.0.tgz │ │ │ ├── path-exists-3.0.0.tgz │ │ │ ├── path-key-2.0.1.tgz │ │ │ ├── pathval-1.1.0.tgz │ │ │ ├── prebuild-install-5.3.0.tgz │ │ │ ├── process-nextick-args-2.0.1.tgz │ │ │ ├── pump-1.0.3.tgz │ │ │ ├── pump-2.0.1.tgz │ │ │ ├── pump-3.0.0.tgz │ │ │ ├── rc-1.2.8.tgz │ │ │ ├── readable-stream-2.3.6.tgz │ │ │ ├── readable-stream-3.4.0.tgz │ │ │ ├── require-directory-2.1.1.tgz │ │ │ ├── require-main-filename-1.0.1.tgz │ │ │ ├── require-main-filename-2.0.0.tgz │ │ │ ├── rxjs-6.5.2.tgz │ │ │ ├── safe-buffer-5.1.2.tgz │ │ │ ├── safe-buffer-5.2.0.tgz │ │ │ ├── semver-5.7.0.tgz │ │ │ ├── semver-6.2.0.tgz │ │ │ ├── set-blocking-2.0.0.tgz │ │ │ ├── sharp-0.22.1.tgz │ │ │ ├── shebang-command-1.2.0.tgz │ │ │ ├── shebang-regex-1.0.0.tgz │ │ │ ├── signal-exit-3.0.2.tgz │ │ │ ├── simple-concat-1.0.0.tgz │ │ │ ├── simple-get-2.8.1.tgz │ │ │ ├── simple-get-3.0.3.tgz │ │ │ ├── simple-swizzle-0.2.2.tgz │ │ │ ├── source-map-0.6.1.tgz │ │ │ ├── string-width-1.0.2.tgz │ │ │ ├── string-width-2.1.1.tgz │ │ │ ├── string-width-3.1.0.tgz │ │ │ ├── string_decoder-1.1.1.tgz │ │ │ ├── string_decoder-1.3.0.tgz │ │ │ ├── strip-ansi-3.0.1.tgz │ │ │ ├── strip-ansi-4.0.0.tgz │ │ │ ├── strip-ansi-5.2.0.tgz │ │ │ ├── strip-bom-3.0.0.tgz │ │ │ ├── strip-eof-1.0.0.tgz │ │ │ ├── strip-json-comments-2.0.1.tgz │ │ │ ├── supports-color-6.0.0.tgz │ │ │ ├── tar-4.4.10.tgz │ │ │ ├── tar-fs-1.16.3.tgz │ │ │ ├── tar-stream-1.6.2.tgz │ │ │ ├── tar-stream-2.1.0.tgz │ │ │ ├── to-buffer-1.1.1.tgz │ │ │ ├── tslib-1.10.0.tgz │ │ │ ├── tunnel-agent-0.6.0.tgz │ │ │ ├── type-detect-4.0.8.tgz │ │ │ ├── util-deprecate-1.0.2.tgz │ │ │ ├── validator-11.1.0.tgz │ │ │ ├── which-1.3.1.tgz │ │ │ ├── which-module-2.0.0.tgz │ │ │ ├── which-pm-runs-1.0.0.tgz │ │ │ ├── wide-align-1.1.3.tgz │ │ │ ├── wrap-ansi-2.1.0.tgz │ │ │ ├── xtend-4.0.1.tgz │ │ │ ├── y18n-4.0.0.tgz │ │ │ ├── yargs-12.0.5.tgz │ │ │ ├── yargs-13.2.2.tgz │ │ │ ├── yargs-parser-11.1.1.tgz │ │ │ ├── yargs-parser-13.0.0.tgz │ │ │ ├── yargs-parser-13.1.1.tgz │ │ │ ├── yargs-unparser-1.5.0.tgz │ │ │ └── zip-stream-2.1.2.tgz │ ├── yarn.lock │ ├── zip.ps1 │ └── zip.sh └── yarn.js ├── run-test-webserver.sh ├── scripts ├── Build.ps1 ├── CopyPackagesForUpm.ps1 ├── Create-Packages.ps1 ├── CreateCombinedManifest.ps1 ├── Get-Deps.ps1 ├── Pack-Npm.ps1 ├── Pack-Upm.ps1 ├── Set-Version.ps1 ├── Test.ps1 ├── TheVersion.cs ├── Upload-ToAppveyor.ps1 ├── create-packages.sh ├── get-version.sh └── helpers.ps1 ├── src ├── .gitignore ├── Directory.Build.props ├── Localization │ ├── .gitignore │ ├── Localization.Designer.cs │ ├── Localization.csproj │ ├── Localization.csproj.DotSettings │ └── Localization.resx ├── com.unity.git.api │ ├── .npmignore │ ├── .npmignore-net35 │ ├── Api.meta │ ├── Api │ │ ├── Api.csproj │ │ ├── Api.csproj.DotSettings │ │ ├── Api.csproj.DotSettings.meta │ │ ├── Api.csproj.meta │ │ ├── Api.v3.ncrunchproject │ │ ├── Api.v3.ncrunchproject.meta │ │ ├── Application.meta │ │ ├── Application │ │ │ ├── ApplicationConfiguration.cs │ │ │ ├── ApplicationConfiguration.cs.meta │ │ │ ├── ApplicationInfo.cs │ │ │ ├── ApplicationInfo.cs.meta │ │ │ ├── ApplicationManagerBase.cs │ │ │ ├── ApplicationManagerBase.cs.meta │ │ │ ├── IApplicationManager.cs │ │ │ └── IApplicationManager.cs.meta │ │ ├── Cache.meta │ │ ├── Cache │ │ │ ├── CacheContainer.cs │ │ │ ├── CacheContainer.cs.meta │ │ │ ├── CacheInterfaces.cs │ │ │ ├── CacheInterfaces.cs.meta │ │ │ ├── CachingClasses.cs │ │ │ └── CachingClasses.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── ActionExtensions.cs │ │ │ ├── ActionExtensions.cs.meta │ │ │ ├── AsyncExtensions.cs │ │ │ ├── AsyncExtensions.cs.meta │ │ │ ├── EnvironmentExtensions.cs │ │ │ ├── EnvironmentExtensions.cs.meta │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── ExceptionExtensions.cs.meta │ │ │ ├── FileEventExtensions.cs │ │ │ ├── FileEventExtensions.cs.meta │ │ │ ├── ListExtensions.cs │ │ │ ├── ListExtensions.cs.meta │ │ │ ├── SPathExtensions.cs │ │ │ ├── SPathExtensions.cs.meta │ │ │ ├── StreamExtensions.cs │ │ │ ├── StreamExtensions.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── UriExtensions.cs │ │ │ └── UriExtensions.cs.meta │ │ ├── Git.meta │ │ ├── Git │ │ │ ├── FailureSeverity.cs │ │ │ ├── FailureSeverity.cs.meta │ │ │ ├── GitAheadBehindStatus.cs │ │ │ ├── GitAheadBehindStatus.cs.meta │ │ │ ├── GitBranch.cs │ │ │ ├── GitBranch.cs.meta │ │ │ ├── GitClient.cs │ │ │ ├── GitClient.cs.meta │ │ │ ├── GitConfig.cs │ │ │ ├── GitConfig.cs.meta │ │ │ ├── GitConfigSource.cs │ │ │ ├── GitConfigSource.cs.meta │ │ │ ├── GitFileLog.cs │ │ │ ├── GitFileLog.cs.meta │ │ │ ├── GitFileStatus.cs │ │ │ ├── GitFileStatus.cs.meta │ │ │ ├── GitLock.cs │ │ │ ├── GitLock.cs.meta │ │ │ ├── GitLogEntry.cs │ │ │ ├── GitLogEntry.cs.meta │ │ │ ├── GitObjectFactory.cs │ │ │ ├── GitObjectFactory.cs.meta │ │ │ ├── GitRemote.cs │ │ │ ├── GitRemote.cs.meta │ │ │ ├── GitResetMode.cs │ │ │ ├── GitResetMode.cs.meta │ │ │ ├── GitStatus.cs │ │ │ ├── GitStatus.cs.meta │ │ │ ├── GitStatusEntry.cs │ │ │ ├── GitStatusEntry.cs.meta │ │ │ ├── IGitObjectFactory.cs │ │ │ ├── IGitObjectFactory.cs.meta │ │ │ ├── IRepository.cs │ │ │ ├── IRepository.cs.meta │ │ │ ├── Repository.cs │ │ │ ├── Repository.cs.meta │ │ │ ├── RepositoryManager.cs │ │ │ ├── RepositoryManager.cs.meta │ │ │ ├── RepositoryWatcher.cs │ │ │ ├── RepositoryWatcher.cs.meta │ │ │ ├── Tasks.meta │ │ │ ├── Tasks │ │ │ │ ├── GitAddTask.cs │ │ │ │ ├── GitAddTask.cs.meta │ │ │ │ ├── GitAheadBehindStatusTask.cs │ │ │ │ ├── GitAheadBehindStatusTask.cs.meta │ │ │ │ ├── GitBranchCreateTask.cs │ │ │ │ ├── GitBranchCreateTask.cs.meta │ │ │ │ ├── GitBranchDeleteTask.cs │ │ │ │ ├── GitBranchDeleteTask.cs.meta │ │ │ │ ├── GitCheckoutTask.cs │ │ │ │ ├── GitCheckoutTask.cs.meta │ │ │ │ ├── GitCleanTask.cs │ │ │ │ ├── GitCleanTask.cs.meta │ │ │ │ ├── GitCommitTask.cs │ │ │ │ ├── GitCommitTask.cs.meta │ │ │ │ ├── GitConfigGetTask.cs │ │ │ │ ├── GitConfigGetTask.cs.meta │ │ │ │ ├── GitConfigListTask.cs │ │ │ │ ├── GitConfigListTask.cs.meta │ │ │ │ ├── GitConfigSetTask.cs │ │ │ │ ├── GitConfigSetTask.cs.meta │ │ │ │ ├── GitConfigUnSetTask.cs │ │ │ │ ├── GitConfigUnSetTask.cs.meta │ │ │ │ ├── GitCountObjectsTask.cs │ │ │ │ ├── GitCountObjectsTask.cs.meta │ │ │ │ ├── GitFetchTask.cs │ │ │ │ ├── GitFetchTask.cs.meta │ │ │ │ ├── GitInitTask.cs │ │ │ │ ├── GitInitTask.cs.meta │ │ │ │ ├── GitLfsInstallTask.cs │ │ │ │ ├── GitLfsInstallTask.cs.meta │ │ │ │ ├── GitLfsVersionTask.cs │ │ │ │ ├── GitLfsVersionTask.cs.meta │ │ │ │ ├── GitListBranchesTask.cs │ │ │ │ ├── GitListBranchesTask.cs.meta │ │ │ │ ├── GitListLocksTask.cs │ │ │ │ ├── GitListLocksTask.cs.meta │ │ │ │ ├── GitLockTask.cs │ │ │ │ ├── GitLockTask.cs.meta │ │ │ │ ├── GitLogTask.cs │ │ │ │ ├── GitLogTask.cs.meta │ │ │ │ ├── GitProcessTask.cs │ │ │ │ ├── GitProcessTask.cs.meta │ │ │ │ ├── GitPullTask.cs │ │ │ │ ├── GitPullTask.cs.meta │ │ │ │ ├── GitPushTask.cs │ │ │ │ ├── GitPushTask.cs.meta │ │ │ │ ├── GitRemoteAddTask.cs │ │ │ │ ├── GitRemoteAddTask.cs.meta │ │ │ │ ├── GitRemoteBranchDeleteTask.cs │ │ │ │ ├── GitRemoteBranchDeleteTask.cs.meta │ │ │ │ ├── GitRemoteChangeTask.cs │ │ │ │ ├── GitRemoteChangeTask.cs.meta │ │ │ │ ├── GitRemoteListTask.cs │ │ │ │ ├── GitRemoteListTask.cs.meta │ │ │ │ ├── GitRemoteRemoveTask.cs │ │ │ │ ├── GitRemoteRemoveTask.cs.meta │ │ │ │ ├── GitRemoveFromIndexTask.cs │ │ │ │ ├── GitRemoveFromIndexTask.cs.meta │ │ │ │ ├── GitResetTask.cs │ │ │ │ ├── GitResetTask.cs.meta │ │ │ │ ├── GitRevertTask.cs │ │ │ │ ├── GitRevertTask.cs.meta │ │ │ │ ├── GitStatusTask.cs │ │ │ │ ├── GitStatusTask.cs.meta │ │ │ │ ├── GitSwitchBranchesTask.cs │ │ │ │ ├── GitSwitchBranchesTask.cs.meta │ │ │ │ ├── GitUnlockTask.cs │ │ │ │ ├── GitUnlockTask.cs.meta │ │ │ │ ├── GitVersionTask.cs │ │ │ │ └── GitVersionTask.cs.meta │ │ │ ├── TreeData.cs │ │ │ └── TreeData.cs.meta │ │ ├── GlobalSuppressions.cs │ │ ├── GlobalSuppressions.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ │ ├── AssemblyResources.cs │ │ │ ├── AssemblyResources.cs.meta │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── Guard.cs │ │ │ ├── Guard.cs.meta │ │ │ ├── SimpleJson.cs │ │ │ ├── SimpleJson.cs.meta │ │ │ ├── TaskHelpers.cs │ │ │ ├── TaskHelpers.cs.meta │ │ │ ├── Validation.cs │ │ │ └── Validation.cs.meta │ │ ├── IO.meta │ │ ├── IO │ │ │ ├── SimpleIO.cs │ │ │ └── SimpleIO.cs.meta │ │ ├── Installer.meta │ │ ├── Installer │ │ │ ├── CopyHelper.cs │ │ │ ├── CopyHelper.cs.meta │ │ │ ├── DugiteReleaseManifest.cs │ │ │ ├── DugiteReleaseManifest.cs.meta │ │ │ ├── GitInstaller.cs │ │ │ ├── GitInstaller.cs.meta │ │ │ ├── Package.cs │ │ │ ├── Package.cs.meta │ │ │ ├── UnzipTask.cs │ │ │ ├── UnzipTask.cs.meta │ │ │ ├── ZipHelper.cs │ │ │ └── ZipHelper.cs.meta │ │ ├── OutputProcessors.meta │ │ ├── OutputProcessors │ │ │ ├── BranchListOutputProcessor.cs │ │ │ ├── BranchListOutputProcessor.cs.meta │ │ │ ├── ConfigOutputProcessor.cs │ │ │ ├── ConfigOutputProcessor.cs.meta │ │ │ ├── FirstLineIsPathOutputProcessor.cs │ │ │ ├── FirstLineIsPathOutputProcessor.cs.meta │ │ │ ├── GitAheadBehindStatusOutputProcessor.cs │ │ │ ├── GitAheadBehindStatusOutputProcessor.cs.meta │ │ │ ├── GitCountObjectsProcessor.cs │ │ │ ├── GitCountObjectsProcessor.cs.meta │ │ │ ├── LfsVersionOutputProcessor.cs │ │ │ ├── LfsVersionOutputProcessor.cs.meta │ │ │ ├── LineProcessor.cs │ │ │ ├── LineProcessor.cs.meta │ │ │ ├── LocksOutputProcessor.cs │ │ │ ├── LocksOutputProcessor.cs.meta │ │ │ ├── LogEntryOutputProcessor.cs │ │ │ ├── LogEntryOutputProcessor.cs.meta │ │ │ ├── RemoteListOutputProcessor.cs │ │ │ ├── RemoteListOutputProcessor.cs.meta │ │ │ ├── StatusOutputProcessor.cs │ │ │ ├── StatusOutputProcessor.cs.meta │ │ │ ├── VersionOutputProcessor.cs │ │ │ └── VersionOutputProcessor.cs.meta │ │ ├── Platform.meta │ │ ├── Platform │ │ │ ├── ApplicationEnvironment.cs │ │ │ ├── ApplicationEnvironment.cs.meta │ │ │ ├── FindExecTask.cs │ │ │ ├── FindExecTask.cs.meta │ │ │ ├── IEnvironment.cs │ │ │ ├── IEnvironment.cs.meta │ │ │ ├── ISettings.cs │ │ │ ├── ISettings.cs.meta │ │ │ ├── Platform.cs │ │ │ ├── Platform.cs.meta │ │ │ ├── Settings.cs │ │ │ └── Settings.cs.meta │ │ ├── PlatformResources.meta │ │ ├── PlatformResources │ │ │ ├── gitattributes │ │ │ ├── gitattributes.meta │ │ │ ├── gitignore │ │ │ ├── gitignore.meta │ │ │ ├── linux.meta │ │ │ ├── linux │ │ │ │ ├── gitconfig │ │ │ │ └── gitconfig.meta │ │ │ ├── mac.meta │ │ │ ├── mac │ │ │ │ ├── gitconfig │ │ │ │ └── gitconfig.meta │ │ │ ├── windows.meta │ │ │ └── windows │ │ │ │ ├── gitconfig │ │ │ │ └── gitconfig.meta │ │ ├── Primitives.meta │ │ ├── Primitives │ │ │ ├── HostAddress.cs │ │ │ ├── HostAddress.cs.meta │ │ │ ├── StringEquivalent.cs │ │ │ ├── StringEquivalent.cs.meta │ │ │ ├── TheVersion.cs │ │ │ └── TheVersion.cs.meta │ │ ├── Process.meta │ │ ├── Process │ │ │ ├── ProcessEnvironment.cs │ │ │ ├── ProcessEnvironment.cs.meta │ │ │ ├── ProcessManager.cs │ │ │ └── ProcessManager.cs.meta │ │ ├── SharpZipLib.meta │ │ ├── SharpZipLib │ │ │ ├── BZip2.meta │ │ │ ├── BZip2 │ │ │ │ ├── BZip2.cs │ │ │ │ ├── BZip2.cs.meta │ │ │ │ ├── BZip2Constants.cs │ │ │ │ ├── BZip2Constants.cs.meta │ │ │ │ ├── BZip2Exception.cs │ │ │ │ ├── BZip2Exception.cs.meta │ │ │ │ ├── BZip2InputStream.cs │ │ │ │ ├── BZip2InputStream.cs.meta │ │ │ │ ├── BZip2OutputStream.cs │ │ │ │ └── BZip2OutputStream.cs.meta │ │ │ ├── Checksum.meta │ │ │ ├── Checksum │ │ │ │ ├── Adler32.cs │ │ │ │ ├── Adler32.cs.meta │ │ │ │ ├── BZip2Crc.cs │ │ │ │ ├── BZip2Crc.cs.meta │ │ │ │ ├── Crc32.cs │ │ │ │ ├── Crc32.cs.meta │ │ │ │ ├── IChecksum.cs │ │ │ │ └── IChecksum.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Exceptions.meta │ │ │ │ ├── Exceptions │ │ │ │ │ ├── SharpZipBaseException.cs │ │ │ │ │ ├── SharpZipBaseException.cs.meta │ │ │ │ │ ├── StreamDecodingException.cs │ │ │ │ │ ├── StreamDecodingException.cs.meta │ │ │ │ │ ├── StreamUnsupportedException.cs │ │ │ │ │ ├── StreamUnsupportedException.cs.meta │ │ │ │ │ ├── UnexpectedEndOfStreamException.cs │ │ │ │ │ ├── UnexpectedEndOfStreamException.cs.meta │ │ │ │ │ ├── ValueOutOfRangeException.cs │ │ │ │ │ └── ValueOutOfRangeException.cs.meta │ │ │ │ ├── FileSystemScanner.cs │ │ │ │ ├── FileSystemScanner.cs.meta │ │ │ │ ├── INameTransform.cs │ │ │ │ ├── INameTransform.cs.meta │ │ │ │ ├── IScanFilter.cs │ │ │ │ ├── IScanFilter.cs.meta │ │ │ │ ├── InvalidNameException.cs │ │ │ │ ├── InvalidNameException.cs.meta │ │ │ │ ├── NameFilter.cs │ │ │ │ ├── NameFilter.cs.meta │ │ │ │ ├── PathFilter.cs │ │ │ │ ├── PathFilter.cs.meta │ │ │ │ ├── StreamUtils.cs │ │ │ │ ├── StreamUtils.cs.meta │ │ │ │ ├── WindowsPathUtils.cs │ │ │ │ └── WindowsPathUtils.cs.meta │ │ │ ├── Encryption.meta │ │ │ ├── Encryption │ │ │ │ ├── PkzipClassic.cs │ │ │ │ ├── PkzipClassic.cs.meta │ │ │ │ ├── ZipAESStream.cs │ │ │ │ ├── ZipAESStream.cs.meta │ │ │ │ ├── ZipAESTransform.cs │ │ │ │ └── ZipAESTransform.cs.meta │ │ │ ├── GZip.meta │ │ │ ├── GZip │ │ │ │ ├── GZip.cs │ │ │ │ ├── GZip.cs.meta │ │ │ │ ├── GZipConstants.cs │ │ │ │ ├── GZipConstants.cs.meta │ │ │ │ ├── GZipException.cs │ │ │ │ ├── GZipException.cs.meta │ │ │ │ ├── GzipInputStream.cs │ │ │ │ ├── GzipInputStream.cs.meta │ │ │ │ ├── GzipOutputStream.cs │ │ │ │ └── GzipOutputStream.cs.meta │ │ │ ├── IArchiveEntry.cs │ │ │ ├── IArchiveEntry.cs.meta │ │ │ ├── Lzw.meta │ │ │ ├── Lzw │ │ │ │ ├── LzwConstants.cs │ │ │ │ ├── LzwConstants.cs.meta │ │ │ │ ├── LzwException.cs │ │ │ │ ├── LzwException.cs.meta │ │ │ │ ├── LzwInputStream.cs │ │ │ │ └── LzwInputStream.cs.meta │ │ │ ├── Tar.meta │ │ │ ├── Tar │ │ │ │ ├── InvalidHeaderException.cs │ │ │ │ ├── InvalidHeaderException.cs.meta │ │ │ │ ├── TarArchive.cs │ │ │ │ ├── TarArchive.cs.meta │ │ │ │ ├── TarBuffer.cs │ │ │ │ ├── TarBuffer.cs.meta │ │ │ │ ├── TarEntry.cs │ │ │ │ ├── TarEntry.cs.meta │ │ │ │ ├── TarException.cs │ │ │ │ ├── TarException.cs.meta │ │ │ │ ├── TarExtendedHeaderReader.cs │ │ │ │ ├── TarExtendedHeaderReader.cs.meta │ │ │ │ ├── TarHeader.cs │ │ │ │ ├── TarHeader.cs.meta │ │ │ │ ├── TarInputStream.cs │ │ │ │ ├── TarInputStream.cs.meta │ │ │ │ ├── TarOutputStream.cs │ │ │ │ └── TarOutputStream.cs.meta │ │ │ ├── Zip.meta │ │ │ └── Zip │ │ │ │ ├── Compression.meta │ │ │ │ ├── Compression │ │ │ │ ├── Deflater.cs │ │ │ │ ├── Deflater.cs.meta │ │ │ │ ├── DeflaterConstants.cs │ │ │ │ ├── DeflaterConstants.cs.meta │ │ │ │ ├── DeflaterEngine.cs │ │ │ │ ├── DeflaterEngine.cs.meta │ │ │ │ ├── DeflaterHuffman.cs │ │ │ │ ├── DeflaterHuffman.cs.meta │ │ │ │ ├── DeflaterPending.cs │ │ │ │ ├── DeflaterPending.cs.meta │ │ │ │ ├── Inflater.cs │ │ │ │ ├── Inflater.cs.meta │ │ │ │ ├── InflaterDynHeader.cs │ │ │ │ ├── InflaterDynHeader.cs.meta │ │ │ │ ├── InflaterHuffmanTree.cs │ │ │ │ ├── InflaterHuffmanTree.cs.meta │ │ │ │ ├── PendingBuffer.cs │ │ │ │ ├── PendingBuffer.cs.meta │ │ │ │ ├── Streams.meta │ │ │ │ └── Streams │ │ │ │ │ ├── DeflaterOutputStream.cs │ │ │ │ │ ├── DeflaterOutputStream.cs.meta │ │ │ │ │ ├── InflaterInputStream.cs │ │ │ │ │ ├── InflaterInputStream.cs.meta │ │ │ │ │ ├── OutputWindow.cs │ │ │ │ │ ├── OutputWindow.cs.meta │ │ │ │ │ ├── StreamManipulator.cs │ │ │ │ │ └── StreamManipulator.cs.meta │ │ │ │ ├── FastZip.cs │ │ │ │ ├── FastZip.cs.meta │ │ │ │ ├── IEntryFactory.cs │ │ │ │ ├── IEntryFactory.cs.meta │ │ │ │ ├── WindowsNameTransform.cs │ │ │ │ ├── WindowsNameTransform.cs.meta │ │ │ │ ├── ZipConstants.cs │ │ │ │ ├── ZipConstants.cs.meta │ │ │ │ ├── ZipEntry.cs │ │ │ │ ├── ZipEntry.cs.meta │ │ │ │ ├── ZipEntryFactory.cs │ │ │ │ ├── ZipEntryFactory.cs.meta │ │ │ │ ├── ZipException.cs │ │ │ │ ├── ZipException.cs.meta │ │ │ │ ├── ZipExtraData.cs │ │ │ │ ├── ZipExtraData.cs.meta │ │ │ │ ├── ZipFile.cs │ │ │ │ ├── ZipFile.cs.meta │ │ │ │ ├── ZipHelperStream.cs │ │ │ │ ├── ZipHelperStream.cs.meta │ │ │ │ ├── ZipInputStream.cs │ │ │ │ ├── ZipInputStream.cs.meta │ │ │ │ ├── ZipNameTransform.cs │ │ │ │ ├── ZipNameTransform.cs.meta │ │ │ │ ├── ZipOutputStream.cs │ │ │ │ ├── ZipOutputStream.cs.meta │ │ │ │ ├── ZipStrings.cs │ │ │ │ └── ZipStrings.cs.meta │ │ ├── SolutionInfo.cs │ │ ├── SolutionInfo.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── TreeBase.cs │ │ │ └── TreeBase.cs.meta │ │ ├── com.unity.git.asmdef │ │ └── com.unity.git.asmdef.meta │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── .gitignore │ │ └── com.unity.git.api.md │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Localization.meta │ ├── Localization │ │ ├── Unity.VersionControl.Git.Localization.dll │ │ └── Unity.VersionControl.Git.Localization.dll.meta │ ├── Mono.Posix.meta │ ├── Mono.Posix │ │ ├── Mono.Posix.dll │ │ └── Mono.Posix.dll.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── BaseTest_Shared.cs │ │ │ ├── BaseTest_Shared.cs.meta │ │ │ ├── CachingClasses.cs │ │ │ ├── CachingClasses.cs.meta │ │ │ ├── IntegrationTestEnvironment.cs │ │ │ ├── IntegrationTestEnvironment.cs.meta │ │ │ ├── UnityBaseTest.cs │ │ │ ├── UnityBaseTest.cs.meta │ │ │ ├── UnityTests.meta │ │ │ ├── UnityTests │ │ │ ├── VersionTests.cs │ │ │ └── VersionTests.cs.meta │ │ │ ├── com.unity.git.api.tests.asmdef │ │ │ └── com.unity.git.api.tests.asmdef.meta │ ├── Third Party Notices - net35.md │ ├── Third Party Notices - net35.md.meta │ ├── Third Party Notices.md │ ├── Third Party Notices.md.meta │ ├── com.unity.editor.tasks.meta │ ├── com.unity.editor.tasks │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── .gitignore │ │ │ └── com.unity.editor.tasks.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Base.meta │ │ │ ├── Base │ │ │ │ ├── ActionTask.cs │ │ │ │ ├── ActionTask.cs.meta │ │ │ │ ├── ActionTask_ctors.cs │ │ │ │ ├── ActionTask_ctors.cs.meta │ │ │ │ ├── FuncTask.cs │ │ │ │ ├── FuncTask.cs.meta │ │ │ │ ├── FuncTask_ctors.cs │ │ │ │ ├── FuncTask_ctors.cs.meta │ │ │ │ ├── Progress.cs │ │ │ │ ├── Progress.cs.meta │ │ │ │ ├── TPLTask.cs │ │ │ │ ├── TPLTask.cs.meta │ │ │ │ ├── TaskAffinity.cs │ │ │ │ ├── TaskAffinity.cs.meta │ │ │ │ ├── TaskBase.cs │ │ │ │ ├── TaskBase.cs.meta │ │ │ │ ├── TaskHelpers.cs │ │ │ │ ├── TaskHelpers.cs.meta │ │ │ │ ├── TaskManager.cs │ │ │ │ ├── TaskManager.cs.meta │ │ │ │ ├── TaskQueue.cs │ │ │ │ └── TaskQueue.cs.meta │ │ │ ├── Environment.meta │ │ │ ├── Environment │ │ │ │ ├── .EditorStubs.cs │ │ │ │ ├── TheEnvironment.cs │ │ │ │ ├── TheEnvironment.cs.meta │ │ │ │ ├── UnityEnvironment.cs │ │ │ │ └── UnityEnvironment.cs.meta │ │ │ ├── Exceptions.meta │ │ │ ├── Exceptions │ │ │ │ ├── DependentTaskFailedException.cs │ │ │ │ ├── DependentTaskFailedException.cs.meta │ │ │ │ ├── NotReadyException.cs │ │ │ │ ├── NotReadyException.cs.meta │ │ │ │ ├── ProcessException.cs │ │ │ │ └── ProcessException.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── AwaitExtensions.cs │ │ │ │ ├── AwaitExtensions.cs.meta │ │ │ │ ├── ExceptionExtensions.cs │ │ │ │ ├── ExceptionExtensions.cs.meta │ │ │ │ ├── PathExtensions.cs │ │ │ │ ├── PathExtensions.cs.meta │ │ │ │ ├── ProcessTaskExtensions.cs │ │ │ │ ├── ProcessTaskExtensions.cs.meta │ │ │ │ ├── StringExtensions.cs │ │ │ │ ├── StringExtensions.cs.meta │ │ │ │ ├── SyncContextExtensions.cs │ │ │ │ ├── SyncContextExtensions.cs.meta │ │ │ │ ├── TaskExtensions.cs │ │ │ │ ├── TaskExtensions.cs.meta │ │ │ │ ├── TaskExtensions_overloads.cs │ │ │ │ └── TaskExtensions_overloads.cs.meta │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── Guard.cs │ │ │ │ ├── Guard.cs.meta │ │ │ │ ├── UriString.cs │ │ │ │ ├── UriString.cs.meta │ │ │ │ ├── Utils.cs │ │ │ │ └── Utils.cs.meta │ │ │ ├── IO.meta │ │ │ ├── IO │ │ │ │ ├── SimpleIO.cs │ │ │ │ └── SimpleIO.cs.meta │ │ │ ├── Logging.meta │ │ │ ├── Logging │ │ │ │ ├── FileLogAdapter.cs │ │ │ │ ├── FileLogAdapter.cs.meta │ │ │ │ ├── ILogging.cs │ │ │ │ ├── ILogging.cs.meta │ │ │ │ ├── LogAdapterBase.cs │ │ │ │ ├── LogAdapterBase.cs.meta │ │ │ │ ├── LogFacade.cs │ │ │ │ ├── LogFacade.cs.meta │ │ │ │ ├── LogHelper.cs │ │ │ │ ├── LogHelper.cs.meta │ │ │ │ ├── LoggingExceptionExtensions.cs │ │ │ │ ├── LoggingExceptionExtensions.cs.meta │ │ │ │ ├── MultipleLogAdapter.cs │ │ │ │ ├── MultipleLogAdapter.cs.meta │ │ │ │ ├── NullLogAdapter.cs │ │ │ │ ├── NullLogAdapter.cs.meta │ │ │ │ ├── UnityLogAdapter.cs │ │ │ │ └── UnityLogAdapter.cs.meta │ │ │ ├── OutputProcessor.meta │ │ │ ├── OutputProcessor │ │ │ │ ├── BaseOutputProcessor.cs │ │ │ │ ├── BaseOutputProcessor.cs.meta │ │ │ │ ├── FirstNonNullLineOutputProcessor.cs │ │ │ │ ├── FirstNonNullLineOutputProcessor.cs.meta │ │ │ │ ├── FirstResultOutputProcessor.cs │ │ │ │ ├── FirstResultOutputProcessor.cs.meta │ │ │ │ ├── RaiseAndDiscardOutputProcessor.cs │ │ │ │ ├── RaiseAndDiscardOutputProcessor.cs.meta │ │ │ │ ├── StringOutputProcessor.cs │ │ │ │ └── StringOutputProcessor.cs.meta │ │ │ ├── Processes.meta │ │ │ ├── Processes │ │ │ │ ├── IProcessManager.cs │ │ │ │ ├── IProcessManager.cs.meta │ │ │ │ ├── ProcessEnvironment.cs │ │ │ │ ├── ProcessEnvironment.cs.meta │ │ │ │ ├── ProcessManager.cs │ │ │ │ ├── ProcessManager.cs.meta │ │ │ │ ├── ProcessWrapper.cs │ │ │ │ └── ProcessWrapper.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── Schedulers.meta │ │ │ ├── Schedulers │ │ │ │ ├── AwaitInterfaces.cs │ │ │ │ ├── AwaitInterfaces.cs.meta │ │ │ │ ├── ConcurrentExclusiveSchedulerPairCustom.cs │ │ │ │ ├── ConcurrentExclusiveSchedulerPairCustom.cs.meta │ │ │ │ ├── IMainThreadSynchronizationContext.cs │ │ │ │ ├── IMainThreadSynchronizationContext.cs.meta │ │ │ │ ├── MainThreadSynchronizationContext.cs │ │ │ │ ├── MainThreadSynchronizationContext.cs.meta │ │ │ │ ├── SynchronizationContextTaskScheduler.cs │ │ │ │ ├── SynchronizationContextTaskScheduler.cs.meta │ │ │ │ ├── TaskSchedulerExcludingThread.cs │ │ │ │ ├── TaskSchedulerExcludingThread.cs.meta │ │ │ │ ├── ThreadSynchronizationContext.cs │ │ │ │ ├── ThreadSynchronizationContext.cs.meta │ │ │ │ ├── ThreadingHelper.cs │ │ │ │ └── ThreadingHelper.cs.meta │ │ │ ├── Tasks.meta │ │ │ ├── Tasks │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── ActionTask.cs │ │ │ │ │ ├── ActionTask.cs.meta │ │ │ │ │ ├── FuncTask.cs │ │ │ │ │ ├── FuncTask.cs.meta │ │ │ │ │ ├── ProcessTask.cs │ │ │ │ │ └── ProcessTask.cs.meta │ │ │ │ ├── BaseProcessTask.cs │ │ │ │ ├── BaseProcessTask.cs.meta │ │ │ │ ├── DotNetProcessTask.cs │ │ │ │ ├── DotNetProcessTask.cs.meta │ │ │ │ ├── DownloadTask.cs │ │ │ │ ├── DownloadTask.cs.meta │ │ │ │ ├── FindExecTask.cs │ │ │ │ ├── FindExecTask.cs.meta │ │ │ │ ├── MonoProcessTask.cs │ │ │ │ ├── MonoProcessTask.cs.meta │ │ │ │ ├── NativeProcessTask.cs │ │ │ │ ├── NativeProcessTask.cs.meta │ │ │ │ ├── StringListProcessTask.cs │ │ │ │ └── StringListProcessTask.cs.meta │ │ │ ├── Version.cs │ │ │ ├── Version.cs.meta │ │ │ ├── com.unity.editor.tasks.asmdef │ │ │ └── com.unity.editor.tasks.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── package.json │ ├── package.json.meta │ ├── sfw.meta │ └── sfw │ │ ├── linux.meta │ │ ├── linux │ │ ├── libsfw.so │ │ ├── libsfw.so.meta │ │ ├── version │ │ └── version.meta │ │ ├── mac.meta │ │ ├── mac │ │ ├── libsfw.bundle │ │ ├── libsfw.bundle.meta │ │ ├── version │ │ └── version.meta │ │ ├── sfw.net.dll │ │ ├── sfw.net.dll.meta │ │ ├── win.meta │ │ └── win │ │ ├── .gitignore │ │ ├── version │ │ ├── version.meta │ │ ├── x64.meta │ │ ├── x64 │ │ ├── pthreadVC2.dll │ │ ├── pthreadVC2.dll.meta │ │ ├── sfw_x64.dll │ │ └── sfw_x64.dll.meta │ │ ├── x86.meta │ │ └── x86 │ │ ├── pthreadVC2.dll │ │ ├── pthreadVC2.dll.meta │ │ ├── sfw_x86.dll │ │ └── sfw_x86.dll.meta ├── com.unity.git.ui │ ├── .npmignore │ ├── .npmignore-net35 │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── .gitignore │ │ └── com.unity.git.ui.md │ ├── Editor.meta │ ├── Editor │ │ ├── ApplicationCache.cs │ │ ├── ApplicationCache.cs.meta │ │ ├── ApplicationManager.cs │ │ ├── ApplicationManager.cs.meta │ │ ├── EntryPoint.cs │ │ ├── EntryPoint.cs.meta │ │ ├── IconsAndLogos.meta │ │ ├── IconsAndLogos │ │ │ ├── added.png │ │ │ ├── added.png.meta │ │ │ ├── added@2x.png │ │ │ ├── added@2x.png.meta │ │ │ ├── big-logo-light.png │ │ │ ├── big-logo-light.png.meta │ │ │ ├── big-logo-light@2x.png │ │ │ ├── big-logo-light@2x.png.meta │ │ │ ├── big-logo.png │ │ │ ├── big-logo.png.meta │ │ │ ├── big-logo@2x.png │ │ │ ├── big-logo@2x.png.meta │ │ │ ├── branch-light.png │ │ │ ├── branch-light.png.meta │ │ │ ├── branch-light@2x.png │ │ │ ├── branch-light@2x.png.meta │ │ │ ├── branch.png │ │ │ ├── branch.png.meta │ │ │ ├── branch@2x.png │ │ │ ├── branch@2x.png.meta │ │ │ ├── code.png │ │ │ ├── code.png.meta │ │ │ ├── code@2x.png │ │ │ ├── code@2x.png.meta │ │ │ ├── conflicted.png │ │ │ ├── conflicted.png.meta │ │ │ ├── conflicted@2x.png │ │ │ ├── conflicted@2x.png.meta │ │ │ ├── current-branch-indicator-light.png │ │ │ ├── current-branch-indicator-light.png.meta │ │ │ ├── current-branch-indicator-light@2x.png │ │ │ ├── current-branch-indicator-light@2x.png.meta │ │ │ ├── current-branch-indicator.png │ │ │ ├── current-branch-indicator.png.meta │ │ │ ├── current-branch-indicator@2x.png │ │ │ ├── current-branch-indicator@2x.png.meta │ │ │ ├── dot-light.png │ │ │ ├── dot-light.png.meta │ │ │ ├── dot-light@2x.png │ │ │ ├── dot-light@2x.png.meta │ │ │ ├── dot.png │ │ │ ├── dot.png.meta │ │ │ ├── dot@2x.png │ │ │ ├── dot@2x.png.meta │ │ │ ├── dropdown-list-icon.png │ │ │ ├── dropdown-list-icon.png.meta │ │ │ ├── dropdown-list-icon@2x.png │ │ │ ├── dropdown-list-icon@2x.png.meta │ │ │ ├── empty-state-init.png │ │ │ ├── empty-state-init.png.meta │ │ │ ├── empty-state-init@2x.png │ │ │ ├── empty-state-init@2x.png.meta │ │ │ ├── favorite-branch-indicator.png │ │ │ ├── favorite-branch-indicator.png.meta │ │ │ ├── git-logo-light.png │ │ │ ├── git-logo-light.png.meta │ │ │ ├── git-logo-orange.png │ │ │ ├── git-logo-orange.png.meta │ │ │ ├── git-logo.png │ │ │ ├── git-logo.png.meta │ │ │ ├── git-merge-light.png │ │ │ ├── git-merge-light.png.meta │ │ │ ├── git-merge-light@2x.png │ │ │ ├── git-merge-light@2x.png.meta │ │ │ ├── git-merge.png │ │ │ ├── git-merge.png.meta │ │ │ ├── git-merge@2x.png │ │ │ ├── git-merge@2x.png.meta │ │ │ ├── globe.png │ │ │ ├── globe.png.meta │ │ │ ├── globe@2x.png │ │ │ ├── globe@2x.png.meta │ │ │ ├── local-commit-icon.png │ │ │ ├── local-commit-icon.png.meta │ │ │ ├── local-commit-icon@2x.png │ │ │ ├── local-commit-icon@2x.png.meta │ │ │ ├── local-commit-light.png │ │ │ ├── local-commit-light.png.meta │ │ │ ├── local-commit-light@2x.png │ │ │ ├── local-commit-light@2x.png.meta │ │ │ ├── local-commit.png │ │ │ ├── local-commit.png.meta │ │ │ ├── local-commit@2x.png │ │ │ ├── local-commit@2x.png.meta │ │ │ ├── lock-light.png │ │ │ ├── lock-light.png.meta │ │ │ ├── lock-light@2x.png │ │ │ ├── lock-light@2x.png.meta │ │ │ ├── lock.png │ │ │ ├── lock.png.meta │ │ │ ├── lock@2x.png │ │ │ ├── lock@2x.png.meta │ │ │ ├── locked-by-person.png │ │ │ ├── locked-by-person.png.meta │ │ │ ├── locked-by-person@2x.png │ │ │ ├── locked-by-person@2x.png.meta │ │ │ ├── locked-modified.png │ │ │ ├── locked-modified.png.meta │ │ │ ├── locked-modified@2x.png │ │ │ ├── locked-modified@2x.png.meta │ │ │ ├── locked-removed.png │ │ │ ├── locked-removed.png.meta │ │ │ ├── locked-removed@2x.png │ │ │ ├── locked-removed@2x.png.meta │ │ │ ├── locked.png │ │ │ ├── locked.png.meta │ │ │ ├── locked@2x.png │ │ │ ├── locked@2x.png.meta │ │ │ ├── merge.png │ │ │ ├── merge.png.meta │ │ │ ├── merge@2x.png │ │ │ ├── merge@2x.png.meta │ │ │ ├── modified.png │ │ │ ├── modified.png.meta │ │ │ ├── modified@2x.png │ │ │ ├── modified@2x.png.meta │ │ │ ├── removed.png │ │ │ ├── removed.png.meta │ │ │ ├── removed@2x.png │ │ │ ├── removed@2x.png.meta │ │ │ ├── renamed.png │ │ │ ├── renamed.png.meta │ │ │ ├── renamed@2x.png │ │ │ ├── renamed@2x.png.meta │ │ │ ├── repo-light.png │ │ │ ├── repo-light.png.meta │ │ │ ├── repo-light@2x.png │ │ │ ├── repo-light@2x.png.meta │ │ │ ├── repo.png │ │ │ ├── repo.png.meta │ │ │ ├── repo@2x.png │ │ │ ├── repo@2x.png.meta │ │ │ ├── rocket.png │ │ │ ├── rocket.png.meta │ │ │ ├── rocket@2x.png │ │ │ ├── rocket@2x.png.meta │ │ │ ├── small-logo-light.png │ │ │ ├── small-logo-light.png.meta │ │ │ ├── small-logo-light@2x.png │ │ │ ├── small-logo-light@2x.png.meta │ │ │ ├── small-logo.png │ │ │ ├── small-logo.png.meta │ │ │ ├── small-logo@2x.png │ │ │ ├── small-logo@2x.png.meta │ │ │ ├── spinner-inside.png │ │ │ ├── spinner-inside.png.meta │ │ │ ├── spinner-inside@2x.png │ │ │ ├── spinner-inside@2x.png.meta │ │ │ ├── spinner-outside.png │ │ │ ├── spinner-outside.png.meta │ │ │ ├── spinner-outside@2x.png │ │ │ ├── spinner-outside@2x.png.meta │ │ │ ├── spinner-sprite.png │ │ │ ├── spinner-sprite.png.meta │ │ │ ├── spinner-sprite@2x.png │ │ │ ├── spinner-sprite@2x.png.meta │ │ │ ├── tracked-branch-indicator.png │ │ │ ├── tracked-branch-indicator.png.meta │ │ │ ├── untracked.png │ │ │ ├── untracked.png.meta │ │ │ ├── untracked@2x.png │ │ │ └── untracked@2x.png.meta │ │ ├── Misc.meta │ │ ├── Misc │ │ │ ├── Installer.cs │ │ │ ├── Installer.cs.meta │ │ │ ├── Styles.cs │ │ │ ├── Styles.cs.meta │ │ │ ├── Utility.cs │ │ │ └── Utility.cs.meta │ │ ├── RunLocationShim.cs │ │ ├── RunLocationShim.cs.meta │ │ ├── ScriptObjectSingleton.cs │ │ ├── ScriptObjectSingleton.cs.meta │ │ ├── SerializableDictionary.cs │ │ ├── SerializableDictionary.cs.meta │ │ ├── SolutionInfo.cs │ │ ├── SolutionInfo.cs.meta │ │ ├── UI.csproj │ │ ├── UI.csproj.DotSettings │ │ ├── UI.csproj.DotSettings.meta │ │ ├── UI.csproj.meta │ │ ├── UI.meta │ │ ├── UI.v3.ncrunchproject │ │ ├── UI.v3.ncrunchproject.meta │ │ ├── UI │ │ │ ├── BaseWindow.cs │ │ │ ├── BaseWindow.cs.meta │ │ │ ├── BranchesView.cs │ │ │ ├── BranchesView.cs.meta │ │ │ ├── ChangesTreeControl.cs │ │ │ ├── ChangesTreeControl.cs.meta │ │ │ ├── ChangesView.cs │ │ │ ├── ChangesView.cs.meta │ │ │ ├── FileHistoryWindow.cs │ │ │ ├── FileHistoryWindow.cs.meta │ │ │ ├── GitPathView.cs │ │ │ ├── GitPathView.cs.meta │ │ │ ├── HistoryView.cs │ │ │ ├── HistoryView.cs.meta │ │ │ ├── IView.cs │ │ │ ├── IView.cs.meta │ │ │ ├── InitProjectView.cs │ │ │ ├── InitProjectView.cs.meta │ │ │ ├── LfsLocksModificationProcessor.cs │ │ │ ├── LfsLocksModificationProcessor.cs.meta │ │ │ ├── LoadingView.cs │ │ │ ├── LoadingView.cs.meta │ │ │ ├── LocksView.cs │ │ │ ├── LocksView.cs.meta │ │ │ ├── Menus.cs │ │ │ ├── Menus.cs.meta │ │ │ ├── PopupWindow.cs │ │ │ ├── PopupWindow.cs.meta │ │ │ ├── ProjectWindowInterface.cs │ │ │ ├── ProjectWindowInterface.cs.meta │ │ │ ├── SettingsView.cs │ │ │ ├── SettingsView.cs.meta │ │ │ ├── Spinner.cs │ │ │ ├── Spinner.cs.meta │ │ │ ├── Subview.cs │ │ │ ├── Subview.cs.meta │ │ │ ├── TreeControl.cs │ │ │ ├── TreeControl.cs.meta │ │ │ ├── UserSettingsView.cs │ │ │ ├── UserSettingsView.cs.meta │ │ │ ├── Window.cs │ │ │ └── Window.cs.meta │ │ ├── UnityAPIWrapper.cs │ │ ├── UnityAPIWrapper.cs.meta │ │ ├── com.unity.git.ui.asmdef │ │ └── com.unity.git.ui.asmdef.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Shim.meta │ ├── Shim │ │ ├── SolutionInfo.cs │ │ ├── SolutionInfo.cs.meta │ │ ├── UnityShim.cs │ │ ├── UnityShim.cs.meta │ │ ├── UnityShim.csproj │ │ ├── UnityShim.csproj.DotSettings │ │ ├── UnityShim.csproj.DotSettings.meta │ │ ├── UnityShim.csproj.meta │ │ ├── com.unity.git.shim.asmdef │ │ └── com.unity.git.shim.asmdef.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── BaseTest_Shared.cs │ │ │ ├── BaseTest_Shared.cs.meta │ │ │ ├── CachingClasses.cs │ │ │ ├── CachingClasses.cs.meta │ │ │ ├── IntegrationTestEnvironment.cs │ │ │ ├── IntegrationTestEnvironment.cs.meta │ │ │ ├── Tests.cs │ │ │ ├── Tests.cs.meta │ │ │ ├── UnityBaseTest.cs │ │ │ ├── UnityBaseTest.cs.meta │ │ │ ├── com.unity.git.ui.tests.asmdef │ │ │ └── com.unity.git.ui.tests.asmdef.meta │ ├── Third Party Notices - net35.md │ ├── Third Party Notices - net35.md.meta │ ├── Third Party Notices.md │ ├── Third Party Notices.md.meta │ ├── package.json │ └── package.json.meta ├── com.unity.git │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Git.csproj │ │ └── Git.csproj.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── VersionTests.cs │ │ │ ├── VersionTests.cs.meta │ │ │ ├── com.unity.git.tests.asmdef │ │ │ └── com.unity.git.tests.asmdef.meta │ ├── Third Party Notices.md │ ├── Third Party Notices.md.meta │ ├── package.json │ └── package.json.meta └── preview.png ├── test.cmd ├── test.sh ├── tests ├── .gitignore ├── CommandLine │ ├── App.config │ ├── CommandLine.csproj │ ├── CommandLine.csproj.DotSettings │ ├── CommandLine.v3.ncrunchproject │ ├── Mono.Options-PCL.cs │ └── Program.cs ├── Directory.Build.props ├── IntegrationTests │ ├── BaseTest.cs │ ├── Download │ │ └── UpdateChecksAndDownloads.cs │ ├── Events │ │ ├── RepositoryManagerTests.cs │ │ └── RepositoryWatcherTests.cs │ ├── Git │ │ └── GitClientTests.cs │ ├── IOTestsRepo.zip │ ├── Installer │ │ └── GitInstallerTests.cs │ ├── IntegrationTests.csproj │ ├── IntegrationTests.csproj.DotSettings │ ├── IntegrationTests.v3.ncrunchproject │ ├── Process │ │ └── ProcessManagerIntegrationTests.cs │ ├── UnzipTaskTests.cs │ └── UnzipTestResources │ │ ├── testfile.tar.gz │ │ ├── testfile.tgz │ │ └── testfile.zip ├── TestUtils │ ├── Events │ │ ├── IRepositoryListener.cs │ │ └── IRepositoryManagerListener.cs │ ├── Helpers │ │ ├── Args.cs │ │ ├── AssertExtensions.cs │ │ ├── ProcessManagerExtensions.cs │ │ └── TestSynchronizationContext.cs │ ├── NUnitLogAdapter.cs │ ├── Substitutes │ │ ├── CreateEnvironmentOptions.cs │ │ ├── CreateFileSystemOptions.cs │ │ ├── CreateRepositoryProcessRunnerOptions.cs │ │ └── SubstituteFactory.cs │ ├── TestUtils.csproj │ ├── TestUtils.csproj.DotSettings │ ├── TestUtils.v3.ncrunchproject │ └── packages.config ├── TestWebServer │ ├── HttpServer.cs │ ├── TestWebServer.csproj │ ├── TestWebServer.csproj.DotSettings │ ├── TestWebServer.v3.ncrunchproject │ └── files │ │ ├── git │ │ ├── downloads │ │ │ ├── dugite-native-v2.21.0-ba7ade8-macOS.tar.gz │ │ │ ├── dugite-native-v2.21.0-ba7ade8-macOS.tar.gz.sha256 │ │ │ ├── dugite-native-v2.21.0-ba7ade8-ubuntu.tar.gz │ │ │ ├── dugite-native-v2.21.0-ba7ade8-ubuntu.tar.gz.sha256 │ │ │ ├── dugite-native-v2.21.0-ba7ade8-windows-x64.tar.gz │ │ │ ├── dugite-native-v2.21.0-ba7ade8-windows-x64.tar.gz.sha256 │ │ │ ├── dugite-native-v2.21.0-ba7ade8-windows-x86.tar.gz │ │ │ └── dugite-native-v2.21.0-ba7ade8-windows-x86.tar.gz.sha256 │ │ └── embedded-git.json │ │ └── unity │ │ ├── generate-latest-json-for-tests.sh │ │ ├── invalid-md5.json │ │ ├── latest.json │ │ └── releases │ │ └── github-for-unity-99.2.0-beta1.unitypackage ├── UnitTests │ ├── Extensions │ │ ├── EnvironmentExtensionTests.cs │ │ └── ListExtensionTests.cs │ ├── Git │ │ ├── GitConfigTests.cs │ │ └── ValidationTests.cs │ ├── IO │ │ ├── BaseOutputProcessorTests.cs │ │ ├── BranchListOutputProcessorTests.cs │ │ ├── CountObjectProcessorTests.cs │ │ ├── GitEnvironmentTestsBase.cs │ │ ├── GitLogEntryListTests.cs │ │ ├── GitLogEntryTests.cs │ │ ├── GitObjectFactoryTests.cs │ │ ├── GitStatusEntryFactoryTests.cs │ │ ├── GitStatusEntryListTests.cs │ │ ├── GitStatusEntryTests.cs │ │ ├── LfsVersionOutputProcessorTests.cs │ │ ├── LinuxBasedGitEnvironmentTests.cs │ │ ├── LinuxDiskUsageOutputProcessorTests.cs │ │ ├── LockOutputProcessorTests.cs │ │ ├── LogEntryOutputProcessorTests.cs │ │ ├── MacBasedGitEnvironmentTests.cs │ │ ├── RemoteListOutputProcessorTests.cs │ │ ├── StatusOutputProcessorTests.cs │ │ ├── VersionOutputProcessorTests.cs │ │ ├── WindowsDiskUsageOutputProcessorTests.cs │ │ └── WindowsGitEnvironmentTests.cs │ ├── Primitives │ │ ├── SerializationTests.cs │ │ └── UriStringTests.cs │ ├── SetUpFixture.cs │ ├── UI │ │ └── TreeBaseTests.cs │ ├── UnitTests.csproj │ ├── UnitTests.csproj.DotSettings │ └── UnitTests.v3.ncrunchproject ├── UnityApiTests │ ├── UnityApiTests.csproj │ ├── UnityApiTests.csproj.DotSettings │ └── UnityApiTests.v3.ncrunchproject └── UnityUITests │ ├── UnityUITests.csproj │ ├── UnityUITests.csproj.DotSettings │ └── UnityUITests.v3.ncrunchproject ├── upmpackage.sh ├── upmtest.sh └── version.json /UnityProject/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/Assets/.gitignore: -------------------------------------------------------------------------------- 1 | Plugins.meta 2 | Plugins/ -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d42cd92a617634abbaaed3a265ed6f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.2.16f1 2 | m_EditorVersionWithRevision: 2019.2.16f1 (b9898e2d04a4) 3 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Api/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/Assets/.gitignore: -------------------------------------------------------------------------------- 1 | Plugins.meta 2 | Plugins/ -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.2.9f1 2 | m_EditorVersionWithRevision: 2019.2.9f1 (ebce4d76e6e8) 3 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Full/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/Assets/.gitignore: -------------------------------------------------------------------------------- 1 | Plugins.meta 2 | Plugins/ -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.2.9f1 2 | m_EditorVersionWithRevision: 2019.2.9f1 (ebce4d76e6e8) 3 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - Package/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/Assets/.gitignore: -------------------------------------------------------------------------------- 1 | Plugins.meta 2 | Plugins/ -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.2.16f1 2 | m_EditorVersionWithRevision: 2019.2.16f1 (b9898e2d04a4) 3 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UnityProject/Git for Unity - UI/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eu 2 | { set +x; } 2>/dev/null 3 | SOURCE="${BASH_SOURCE[0]}" 4 | DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )" 5 | 6 | pushd $DIR >/dev/null 2>&1 7 | rm -rf build 8 | git clean -xdf -e lib -e packages -e .Editor -e .vs -e .store -e setenv.sh -e upm-ci~/test-results -e .bin -e .download 9 | popd >/dev/null 2>&1 -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | ApplicationInfo_Local.cs -------------------------------------------------------------------------------- /common/nuget.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5394c5b66eece6a2c53f8817b9efba2c33b41bf4f6dffd4ab8b15f7e74b64401 3 | size 4087000 4 | -------------------------------------------------------------------------------- /common/tests.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreserveNewest 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/contributing/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/docs/contributing/tooling.md -------------------------------------------------------------------------------- /docs/contributing/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/docs/contributing/troubleshooting.md -------------------------------------------------------------------------------- /docs/using/images/branches-initial-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:558821e67ea26955434da0485785e9240b6c15c44a3790b642fdcd37382e56a2 3 | size 59798 4 | -------------------------------------------------------------------------------- /docs/using/images/changes-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ac4637a222a06e6ab57f23082b8e8b2f5cb9e35b9b99776c112ddcebb923dec 3 | size 61918 4 | -------------------------------------------------------------------------------- /docs/using/images/confirm-pull-changes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b0e1aa1d8d86cb0264c9ca569a5c8e71b0aba73a2eb6611c06ec47670037d7d 3 | size 21478 4 | -------------------------------------------------------------------------------- /docs/using/images/confirm-push-changes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e2e136027b03609f344bfde0c777d8e915544a5e9920f1268e4cc3abc5b1481 3 | size 18676 4 | -------------------------------------------------------------------------------- /docs/using/images/confirm-revert.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba990ce12403bfb53fb387ca3f3e2c447b21814ed6cd7e6f88d968463a5253a8 3 | size 21973 4 | -------------------------------------------------------------------------------- /docs/using/images/create-new-branch-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0239a51f611501dc63c828de206f35d412493871f65e712983666e67dbfc231 3 | size 62046 4 | -------------------------------------------------------------------------------- /docs/using/images/delete-dialog.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99d7cd8ef4957614cc844a08a632159157295414dc4675c1394f3209e30ffa58 3 | size 76315 4 | -------------------------------------------------------------------------------- /docs/using/images/github-authenticate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31ca0f7c4fc5c737a3db2da6eeb3deaa862d27e2cf3d1aa78fa14555b7cac750 3 | size 5927 4 | -------------------------------------------------------------------------------- /docs/using/images/github-menu-item.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c423766a70230c245f4bcdb1e33d9e76f267bf789876ecf9050016f9c8671735 3 | size 19651 4 | -------------------------------------------------------------------------------- /docs/using/images/github-sign-in-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79bea09964bcf1964d4d1e1fb9712fe9fc67dc8ffe11f936534c9f2be63fd777 3 | size 9318 4 | -------------------------------------------------------------------------------- /docs/using/images/github-two-factor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aba2174f780ea52a7cf7bbfd5144527bb7b29c3ce6a3200b6b6f8c69b2d6fb48 3 | size 9665 4 | -------------------------------------------------------------------------------- /docs/using/images/locked-scene.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbc246b18cbd173c19f392fe7ab85bffb8a97a7616ef99e7e37496e307924e49 3 | size 51983 4 | -------------------------------------------------------------------------------- /docs/using/images/locks-view-right-click.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:590dae09b3c029e48c3703d6c85a6774b062ebea46f11c2c062d97fedcb436df 3 | size 27251 4 | -------------------------------------------------------------------------------- /docs/using/images/locks-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:118f2b2e1bb82b598107eaa73db9a077374ff4f9601e47677eca7296353b1bc3 3 | size 23274 4 | -------------------------------------------------------------------------------- /docs/using/images/name-branch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08232fa5cfd41a41c8091197ac27f433fdfa865c4996388dd0c731ac75176442 3 | size 59599 4 | -------------------------------------------------------------------------------- /docs/using/images/new-branch-created.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8543da247ee23364c15abec87e4e3de3e62b85a470e7d3d090ade18fb321072c 3 | size 64045 4 | -------------------------------------------------------------------------------- /docs/using/images/post-commit-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91e26123236bdd3e692ca7d30ff0d6477311fe739d8008ba19fd543ee3506176 3 | size 21345 4 | -------------------------------------------------------------------------------- /docs/using/images/post-push-history-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0c2d5ccaddc88d3268e0d57f02229525240ecc71bded951e23171456560268b 3 | size 22485 4 | -------------------------------------------------------------------------------- /docs/using/images/pull-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feb83a46ebdd34ff46db3a38e8829f5adec5b10824bf69a8c56c9ba6fbd603ff 3 | size 25054 4 | -------------------------------------------------------------------------------- /docs/using/images/push-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab87bae0916af3681b7528891a359c77597fa3ea57f13eb6924f1cbcf2f2ab7d 3 | size 14581 4 | -------------------------------------------------------------------------------- /docs/using/images/release-lock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f6e05a714d270016d1f8ad4e018a895ed2b023fe59bd34a28df8d315c065649 3 | size 140913 4 | -------------------------------------------------------------------------------- /docs/using/images/request-lock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f25877141bed2dcbdc4324edcbd802b6f216771e80de704f20dc99a3fdc718b 3 | size 136078 4 | -------------------------------------------------------------------------------- /docs/using/images/revert-commit.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7711f428f3e04ea056c47b5d43109f3941761f4c286360d3616e0598d2d7b75 3 | size 26119 4 | -------------------------------------------------------------------------------- /docs/using/images/revert.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dea7b36eec8e2d99e1906b6cbc9cd22f52d2db09cc1a0cf34563585720b6649d 3 | size 25141 4 | -------------------------------------------------------------------------------- /docs/using/images/success-pull-changes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0407ab83ca311f319ff7feac0dac84b862935e2b50353ff82c067bdadf80e16 3 | size 16888 4 | -------------------------------------------------------------------------------- /docs/using/images/success-push-changes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfd290cb1e52b0acb5503642a3aaef164bf343735729325484e25d8b99293d7e 3 | size 13262 4 | -------------------------------------------------------------------------------- /docs/using/images/switch-confirmation.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ed80f5cf2fab5fd256dd7cd093ad505c966edb95bdc5a15c3f1ace042bec7f6 3 | size 73947 4 | -------------------------------------------------------------------------------- /docs/using/images/switch-or-delete.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c0d171b2e8f7e212f2446b416235c6232c57c9b4927cfa41891bffa1940ae9d 3 | size 73828 4 | -------------------------------------------------------------------------------- /docs/using/images/switched-branches.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:542806a8dcc012cdfadadaf9cdab3cf4871bbbbee2c8d73834946df4ed249aec 3 | size 64281 4 | -------------------------------------------------------------------------------- /extras/com.unity.git.api/Tests/Api.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee4a2e1a314c9b4b88b69394b868d81 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git.api/Tests/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a32ade1887cc4286831b5644fb5f9f9e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /extras/com.unity.git.ui/Tests/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a32c03263f3440d1919782a0cee8e694 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /extras/com.unity.git/Api.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33ea22bb2a600c4f963c74d436bb0c0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git/Editor/Version.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81bece26e4ad40b4a77eaf1f39f52aaa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /extras/com.unity.git/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bdd6d88e7a8d54aa3ae5dca779edeb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git/Mono.Posix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee4a2e8c314c9b4b99b69394b868d81 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git/Shim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3057babddc6faf4e918dbee8fcc736c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git/Tests/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ceb39fc7b6df40158c8ca835f899f966 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /extras/com.unity.git/com.unity.editor.tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44393058f8f71364f9e7f749d311deae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /extras/com.unity.git/sfw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10a2378e0ca35da47bf333d56d66fba3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "2.1.509" 4 | } 5 | } -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | Managed 2 | UnityExtensions 3 | !*.nupkg -------------------------------------------------------------------------------- /lib/AsyncBridge.Net35.0.2.3333.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/AsyncBridge.Net35.0.2.3333.0.nupkg -------------------------------------------------------------------------------- /lib/AsyncBridge.Net35.Repackaged.0.2.4-custom.nupkg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92cb52d8cbad9a831d7790b8895f7507779c6db8223988fad97ae7bd5bee22fb 3 | size 22634 4 | -------------------------------------------------------------------------------- /lib/Custom.Unity.NETFramework.ReferenceAssemblies.net35.1.0.1-custom.nupkg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35898bde9adc35ed39f07da44bf493154ed162b1cd8ae49348fcb78d09899acc 3 | size 4576962 4 | -------------------------------------------------------------------------------- /lib/Managed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/Managed/.gitignore -------------------------------------------------------------------------------- /lib/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f80ccbe062e639dbe941d686f265e6930d80f78fb520197ef335921e81c51423 3 | size 44544 4 | -------------------------------------------------------------------------------- /lib/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf850efff8815b15f4cd3110c08f0a3152feda81ee83c2b9da4dbf832d1ee1cc 3 | size 81920 4 | -------------------------------------------------------------------------------- /lib/Mono.Cecil.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b7e868ccf7e720a6179c7373581f0f4046003798b2eaca020be9a6cafd6b607 3 | size 302592 4 | -------------------------------------------------------------------------------- /lib/Mono.Posix.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bda42c2c2c6d83a5c840d5262bfb1ae0e24e3c1778c96d5ea1ff96a1bb244f70 3 | size 184320 4 | -------------------------------------------------------------------------------- /lib/TaskParallelLibrary.1.0.3333.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/TaskParallelLibrary.1.0.3333.0.nupkg -------------------------------------------------------------------------------- /lib/TaskParallelLibrary.Repackaged.1.0.4-custom.nupkg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9427ea94b8c04236b49797dac00e1f97667f1995da4cead0a336cadde1966931 3 | size 1733790 4 | -------------------------------------------------------------------------------- /lib/Unity.NETFramework.ReferenceAssemblies.net35.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/Unity.NETFramework.ReferenceAssemblies.net35.1.0.0.nupkg -------------------------------------------------------------------------------- /lib/UnityExtensions/Unity/TestRunner/Editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/UnityExtensions/Unity/TestRunner/Editor/.gitignore -------------------------------------------------------------------------------- /lib/com.unity.editor.tasks.1.2.23.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.editor.tasks.1.2.23.nupkg -------------------------------------------------------------------------------- /lib/com.unity.editor.tasks.1.2.23.snupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.editor.tasks.1.2.23.snupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.client.0.1.23-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.client.0.1.23-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.client.0.1.25-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.client.0.1.25-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.client.0.1.26-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.client.0.1.26-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.interfaces.0.1.23-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.interfaces.0.1.23-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.interfaces.0.1.25-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.interfaces.0.1.25-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.interfaces.0.1.26-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.interfaces.0.1.26-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.server.0.1.23-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.server.0.1.23-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.server.0.1.25-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.server.0.1.25-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.process-server.server.0.1.26-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.process-server.server.0.1.26-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.rpc.1.0.11-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.rpc.1.0.11-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.rpc.hosted.1.0.11-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.rpc.hosted.1.0.11-preview.nupkg -------------------------------------------------------------------------------- /lib/com.unity.rpc.interfaces.1.0.11-preview.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/lib/com.unity.rpc.interfaces.1.0.11-preview.nupkg -------------------------------------------------------------------------------- /lib/deps.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:292508eb6603fcc390af16d4b7ce5ecde3eeb88bf37406149c7ae7de45692be3 3 | size 2163294 4 | -------------------------------------------------------------------------------- /lib/nunit.core.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:760f14c04471e6b1e95467e3cf1f7beefc594ea1a732a116711d436f507b8b62 3 | size 139264 4 | -------------------------------------------------------------------------------- /lib/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d0fa3403f6ba0753152c888d2ba57804ce505a02c5f0a42f1bd7b28028c4621 3 | size 57344 4 | -------------------------------------------------------------------------------- /lib/nunit.framework.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ef8f7456787161c95c3038f75759db522741b8f41014b0ed870040d45fba511 3 | size 139264 4 | -------------------------------------------------------------------------------- /lib/pdb2mdb.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a72425f98bdb5923704946c4010485d471ce9e35611264f394637fb185424619 3 | size 369664 4 | -------------------------------------------------------------------------------- /packaging/create-unity-packages/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 3 6 | charset = utf-8 7 | trim_trailing_whitespace = false 8 | insert_final_newline = false -------------------------------------------------------------------------------- /packaging/create-unity-packages/.yarnrc: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | yarn-path "../yarn.js" 5 | yarn-offline-mirror "vendor/cache" 6 | yarn-offline-mirror-pruning true 7 | -------------------------------------------------------------------------------- /packaging/create-unity-packages/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | { set +x; } 2>/dev/null 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" 4 | pushd $DIR >/dev/null 5 | if [ ! -d 'node_modules' ]; then node ../yarn.js install --prefer-offline; fi 6 | node ../yarn.js start $@ 7 | popd >/dev/null -------------------------------------------------------------------------------- /packaging/create-unity-packages/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.map -------------------------------------------------------------------------------- /packaging/create-unity-packages/tests/.gitattributes: -------------------------------------------------------------------------------- 1 | text_eol_crlf.txt text eol=crlf 2 | text_eol_lf.txt text eol=lf 3 | text_eol_mix.txt -text -------------------------------------------------------------------------------- /packaging/create-unity-packages/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.map -------------------------------------------------------------------------------- /packaging/create-unity-packages/tests/small-text.txt: -------------------------------------------------------------------------------- 1 | One line 2 | two line 3 | more line! 4 | -------------------------------------------------------------------------------- /packaging/create-unity-packages/update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | { set +x; } 2>/dev/null 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" 4 | pushd $DIR >/dev/null 5 | if [ ! -d 'node_modules' ]; then node ../yarn.js install --prefer-offline; fi 6 | node ../yarn.js update $@ 7 | popd >/dev/null -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-archiver-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-archiver-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-chai-4.1.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-chai-4.1.7.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-chai-as-promised-7.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-chai-as-promised-7.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-events-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-events-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-glob-7.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-glob-7.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-image-size-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-image-size-0.7.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-minimatch-3.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-minimatch-3.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/@types-mocha-5.2.7.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/@types-mocha-5.2.7.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ansi-colors-3.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ansi-colors-3.2.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ansi-regex-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ansi-regex-2.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ansi-regex-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ansi-regex-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ansi-regex-4.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ansi-regex-4.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/aproba-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/aproba-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/archiver-3.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/archiver-3.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/archiver-utils-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/archiver-utils-2.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/are-we-there-yet-1.1.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/are-we-there-yet-1.1.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/arrify-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/arrify-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/assertion-error-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/assertion-error-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/async-2.6.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/async-2.6.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/axios-0.19.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/axios-0.19.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/base64-js-1.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/base64-js-1.3.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/bl-1.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/bl-1.2.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/bl-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/bl-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/browser-stdout-1.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/browser-stdout-1.3.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-5.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-5.2.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-alloc-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-alloc-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-alloc-unsafe-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-alloc-unsafe-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-crc32-0.2.13.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-crc32-0.2.13.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-fill-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-fill-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/buffer-from-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/buffer-from-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/camelcase-5.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/camelcase-5.3.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/chai-4.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/chai-4.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/chai-as-promised-7.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/chai-as-promised-7.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/chalk-2.4.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/chalk-2.4.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/check-error-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/check-error-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/chownr-1.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/chownr-1.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/cliui-4.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/cliui-4.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/code-point-at-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/code-point-at-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/color-3.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/color-3.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/color-name-1.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/color-name-1.1.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/color-string-1.5.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/color-string-1.5.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/compress-commons-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/compress-commons-2.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/console-control-strings-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/console-control-strings-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/core-util-is-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/core-util-is-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/crc-3.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/crc-3.8.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/crc32-stream-3.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/crc32-stream-3.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/cross-spawn-6.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/cross-spawn-6.0.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/debug-3.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/debug-3.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/debug-3.2.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/debug-3.2.6.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/decamelize-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/decamelize-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/decompress-response-3.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/decompress-response-3.3.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/deep-eql-3.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/deep-eql-3.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/define-properties-1.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/define-properties-1.1.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/delegates-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/delegates-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/detect-libc-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/detect-libc-1.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/emoji-regex-7.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/emoji-regex-7.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/end-of-stream-1.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/end-of-stream-1.4.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/es-abstract-1.13.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/es-abstract-1.13.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/es-to-primitive-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/es-to-primitive-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/execa-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/execa-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/expand-template-2.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/expand-template-2.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/find-up-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/find-up-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/flat-4.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/flat-4.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/follow-redirects-1.5.10.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/follow-redirects-1.5.10.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/fs-constants-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/fs-constants-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/fs-copy-file-sync-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/fs-copy-file-sync-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/function-bind-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/function-bind-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/gauge-2.7.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/gauge-2.7.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/get-caller-file-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/get-caller-file-1.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/get-caller-file-2.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/get-caller-file-2.0.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/get-func-name-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/get-func-name-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/get-stream-4.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/get-stream-4.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/github-from-package-0.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/github-from-package-0.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/glob-7.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/glob-7.1.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/graceful-fs-4.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/graceful-fs-4.2.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/growl-1.10.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/growl-1.10.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/has-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/has-1.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/has-symbols-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/has-symbols-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/has-unicode-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/has-unicode-2.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/he-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/he-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ieee754-1.1.13.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ieee754-1.1.13.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/image-size-0.7.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/image-size-0.7.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/image-thumbnail-1.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/image-thumbnail-1.0.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/inherits-2.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/inherits-2.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/inherits-2.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/inherits-2.0.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ini-1.3.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ini-1.3.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/invert-kv-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/invert-kv-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-arrayish-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-arrayish-0.3.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-buffer-2.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-buffer-2.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-callable-1.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-callable-1.1.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-date-object-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-date-object-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-fullwidth-code-point-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-fullwidth-code-point-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-fullwidth-code-point-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-fullwidth-code-point-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-regex-1.0.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-regex-1.0.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-stream-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-stream-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/is-symbol-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/is-symbol-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/isarray-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/isarray-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/isexe-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/isexe-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/js-yaml-3.13.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/js-yaml-3.13.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lazystream-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lazystream-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lcid-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lcid-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/locate-path-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/locate-path-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash-4.17.11.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash-4.17.11.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash-4.17.15.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash-4.17.15.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash.defaults-4.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash.defaults-4.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash.difference-4.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash.difference-4.5.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash.flatten-4.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash.flatten-4.4.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash.isplainobject-4.0.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash.isplainobject-4.0.6.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/lodash.union-4.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/lodash.union-4.6.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/log-symbols-2.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/log-symbols-2.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/map-age-cleaner-0.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/map-age-cleaner-0.1.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/mem-4.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/mem-4.3.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/mimic-fn-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/mimic-fn-2.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/mimic-response-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/mimic-response-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/minimist-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/minimist-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/minizlib-1.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/minizlib-1.2.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/mocha-6.1.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/mocha-6.1.4.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ms-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ms-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ms-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ms-2.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/ms-2.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/ms-2.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/nan-2.14.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/nan-2.14.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/napi-build-utils-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/napi-build-utils-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/nice-try-1.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/nice-try-1.0.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/node-abi-2.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/node-abi-2.9.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/node-environment-flags-1.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/node-environment-flags-1.0.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/noop-logger-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/noop-logger-0.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/normalize-path-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/normalize-path-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/npm-run-path-2.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/npm-run-path-2.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/npmlog-4.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/npmlog-4.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/number-is-nan-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/number-is-nan-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/object-assign-4.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/object-assign-4.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/object-keys-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/object-keys-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/object.assign-4.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/object.assign-4.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/object.getownpropertydescriptors-2.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/object.getownpropertydescriptors-2.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/os-homedir-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/os-homedir-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/os-locale-3.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/os-locale-3.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/os-tmpdir-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/os-tmpdir-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-defer-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-defer-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-finally-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-finally-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-is-promise-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-is-promise-2.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-limit-2.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-limit-2.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-locate-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-locate-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/p-try-2.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/p-try-2.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/path-exists-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/path-exists-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/path-key-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/path-key-2.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/pathval-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/pathval-1.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/prebuild-install-5.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/prebuild-install-5.3.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/process-nextick-args-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/process-nextick-args-2.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/pump-1.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/pump-1.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/pump-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/pump-2.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/pump-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/pump-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/rc-1.2.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/rc-1.2.8.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/readable-stream-2.3.6.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/readable-stream-2.3.6.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/readable-stream-3.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/readable-stream-3.4.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/require-directory-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/require-directory-2.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/require-main-filename-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/require-main-filename-1.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/require-main-filename-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/require-main-filename-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/rxjs-6.5.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/rxjs-6.5.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/safe-buffer-5.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/safe-buffer-5.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/safe-buffer-5.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/safe-buffer-5.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/semver-5.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/semver-5.7.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/semver-6.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/semver-6.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/set-blocking-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/set-blocking-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/sharp-0.22.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/sharp-0.22.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/shebang-command-1.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/shebang-command-1.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/shebang-regex-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/shebang-regex-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/signal-exit-3.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/signal-exit-3.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/simple-concat-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/simple-concat-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/simple-get-2.8.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/simple-get-2.8.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/simple-get-3.0.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/simple-get-3.0.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/simple-swizzle-0.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/simple-swizzle-0.2.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/source-map-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/source-map-0.6.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/string-width-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/string-width-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/string-width-2.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/string-width-2.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/string-width-3.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/string-width-3.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/string_decoder-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/string_decoder-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/string_decoder-1.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/string_decoder-1.3.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-ansi-3.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-ansi-3.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-ansi-4.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-ansi-4.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-ansi-5.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-ansi-5.2.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-bom-3.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-bom-3.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-eof-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-eof-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/strip-json-comments-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/strip-json-comments-2.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/supports-color-6.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/supports-color-6.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tar-4.4.10.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tar-4.4.10.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tar-fs-1.16.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tar-fs-1.16.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tar-stream-1.6.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tar-stream-1.6.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tar-stream-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tar-stream-2.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/to-buffer-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/to-buffer-1.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tslib-1.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tslib-1.10.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/tunnel-agent-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/tunnel-agent-0.6.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/type-detect-4.0.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/type-detect-4.0.8.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/util-deprecate-1.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/util-deprecate-1.0.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/validator-11.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/validator-11.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/which-1.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/which-1.3.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/which-module-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/which-module-2.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/which-pm-runs-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/which-pm-runs-1.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/wide-align-1.1.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/wide-align-1.1.3.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/wrap-ansi-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/wrap-ansi-2.1.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/xtend-4.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/xtend-4.0.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/y18n-4.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/y18n-4.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-12.0.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-12.0.5.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-13.2.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-13.2.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-parser-11.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-parser-11.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-parser-13.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-parser-13.0.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-parser-13.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-parser-13.1.1.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/yargs-unparser-1.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/yargs-unparser-1.5.0.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/vendor/cache/zip-stream-2.1.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/packaging/create-unity-packages/vendor/cache/zip-stream-2.1.2.tgz -------------------------------------------------------------------------------- /packaging/create-unity-packages/zip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | { set +x; } 2>/dev/null 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" 4 | pushd $DIR >/dev/null 5 | if [ ! -d 'node_modules' ]; then node ../yarn.js install --prefer-offline; fi 6 | node ../yarn.js start $@ 7 | popd >/dev/null -------------------------------------------------------------------------------- /scripts/get-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eu 2 | { set +x; } 2>/dev/null 3 | 4 | SOURCE="${BASH_SOURCE[0]}" 5 | DIR="$( cd -P "$( dirname "$SOURCE" )"/.. >/dev/null 2>&1 && pwd )" 6 | 7 | dotnet tool install -g nbgv >/dev/null 2>&1 || true 8 | nbgv get-version -p "$DIR/src/com.unity.git.api" -v AssemblyInformationalVersion -------------------------------------------------------------------------------- /src/Localization/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdb* 2 | *.mdb* 3 | *.dll -------------------------------------------------------------------------------- /src/com.unity.git.api/Api.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33ea22bb2a600c4f963c74d436bb0c0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Api.csproj.DotSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffd01f2a2a396c449b9e5cedc610ae9c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Api.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8219c2a78b692e34aa5084e2066a3339 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Api.v3.ncrunchproject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d90ff47c9a9f6d46b4912e3c77c3fe8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Application.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a8cf29f71ec264b9e8af3e30d70bed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Cache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1afafe20beb5ed458e3727091b85144 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Cache/CacheContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc4dffb2f00b789478aa0353b154ee93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Cache/CachingClasses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9fba2d2c04b23b4a8f497de9f6efb93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86018cc470cab0b4c8c2263108adce1a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fe8673fd135e664daf91e9e47b11583 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/FailureSeverity.cs: -------------------------------------------------------------------------------- 1 | namespace Unity.VersionControl.Git 2 | { 3 | public enum FailureSeverity 4 | { 5 | Moderate, 6 | Critical 7 | }; 8 | } 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/FailureSeverity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b14d3adf991149549a1d62cf32b7c7b2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitBranch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17b0fc46dffcbdc478123fc61ee8fc57 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33c1427a7aeea64fa9e56240473abc5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c00e7869133ffe44a7310da869ba5db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitConfigSource.cs: -------------------------------------------------------------------------------- 1 | namespace Unity.VersionControl.Git 2 | { 3 | public enum GitConfigSource 4 | { 5 | NonSpecified, 6 | Local, 7 | User, 8 | Global 9 | } 10 | } -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitConfigSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eae561a4b13d954ea1a6da8c3a4cae3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitFileLog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69ff0ab7c1796534498e1446bb05f7a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitFileStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 403139baeffb83249808587d0cc62f43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitLock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 594fe7c0988f8c945b9ea68b323ff43c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitLogEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 903878bebcab7b944ab8cb426bc16ded 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitObjectFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c21f1cffa0819b478e17c34deeea66d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitRemote.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 044e4d63b4c9c6a4eaa68ba76e35e060 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitResetMode.cs: -------------------------------------------------------------------------------- 1 | namespace Unity.VersionControl.Git 2 | { 3 | public enum GitResetMode 4 | { 5 | /// 6 | /// Defaults to mixed 7 | /// 8 | NonSpecified, 9 | Soft, 10 | Keep, 11 | Mixed, 12 | Hard 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitResetMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65c626b292ab949b6b072cec41098b99 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96baae7a71fc8334e8e850a893536c6c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/GitStatusEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4af75bf6262afdf448102e3d9e7e00eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/IGitObjectFactory.cs: -------------------------------------------------------------------------------- 1 | namespace Unity.VersionControl.Git 2 | { 3 | public interface IGitObjectFactory 4 | { 5 | GitStatusEntry CreateGitStatusEntry(string path, GitFileStatus indexStatus, GitFileStatus workTreeStatus, string originalPath = null); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/IRepository.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69a9513657481bc45bc1e29ddd030046 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/Repository.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 507db5bd989f68f46aba893009e5118d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/Tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a19f053e98928e4db0544524f630566 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/Tasks/GitAddTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9d6f647edcc4df4991510668a565c3c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/Tasks/GitLogTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63f609fe046c8504899cc5b51ae45c1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Git/TreeData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b99c603217894824db0db411a600b4bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/src/com.unity.git.api/Api/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/GlobalSuppressions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71f38a3d5df30c54182e02eca8abf1fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 054de97078c0cb04583f980d7017385c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers/Constants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc3013ef35ea34f4fb8986df4749604b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers/Guard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aade0966049a2c448d1f2cd966c3f4d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers/SimpleJson.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243fc9ca746d38e4188e9bb1025fad73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers/TaskHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8de3f3ca789192440b8ac1dd5b343cf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Helpers/Validation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d27c14c201b72114cada234a853a15d7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 468a61cf793278640a7d7b9900c7fd3b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/IO/SimpleIO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 569fdef6c54fa5240a356f0c1eb432aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Installer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3a30321fd52edb4794e406d7a003ead 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Installer/CopyHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f295e9706fcb7fc438cd420e01ac742b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/OutputProcessors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ae637e40465c1429f98abd253cbe5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Platform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d32e97b59111e4fadae24cfac27c1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53c9064bb2504c5488e726bff8996fa5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/gitattributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58d609b29e136e24aa1533ee023d1d28 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/gitignore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 123982a8e758e6f49aec933324fd9f72 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/linux.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65fcbb49c1593d849855baed0063c9a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/linux/gitconfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca5b40479d26fbf4ebd60fb77074eeb6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f49aec598cdf9e040a447124eb2a1d54 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/mac/gitconfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f38ba5fe59aad8d4fab31895397d8564 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b080d0a2c52ec0940a4b83271fb9cad9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/PlatformResources/windows/gitconfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a4ce790c023794fb0c160d284957c5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Primitives.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bf24ca8334868c45bab8458c60e2191 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/Process.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0abd465d13435a94b86e6034df67cf6e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181270bfe8e925240bd67e410c20f8e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/BZip2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 860a3053b2f14ad4eac53f0a0f88467c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Checksum.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d167468080647d4d8c44f2c008c3b19 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8237a8f5e5adf064895b67d1555a360a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Core/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e16dd1ec8e2dc6f40b9054303e3a12d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Encryption.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c798c2882ec124648a1f81819333177f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/GZip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f23d1046161da246a267bc00c918009 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Lzw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e84a1ec3c3382294f91abb8e2a8fde37 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Tar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ddecb67daf98be4d90676ab223f12c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7ca483fce39f7a4489df4f6f0edffe8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Zip/Compression.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b355f0cf9b2aee44bb3534335e46cb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SharpZipLib/Zip/Compression/Streams.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 249e9ee5509edec4a917bfbeb99a4cdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/SolutionInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39fe50a70e203a34d840b305c0a6d685 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59921ba1517ba7242aabee28b624ddc5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/UI/TreeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56955a4e7cd82e14f8af1804d4179c86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Api/com.unity.git.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 988274a4b05417047a0bc32bb8c3d3d3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 4 | 5 | ## [VERSION] - DATE 6 | 7 | -------------------------------------------------------------------------------- /src/com.unity.git.api/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a35e9b4424248ff9a6dab837d2b9490 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Documentation~/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/src/com.unity.git.api/Documentation~/.gitignore -------------------------------------------------------------------------------- /src/com.unity.git.api/Documentation~/com.unity.git.api.md: -------------------------------------------------------------------------------- 1 | # About <Git for Unity> 2 | -------------------------------------------------------------------------------- /src/com.unity.git.api/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e7e12a56f1184b42903139152ceee36 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25bdd6d88e7a8d54aa3ae5dca779edeb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Localization/Unity.VersionControl.Git.Localization.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9de1f78ff8bffb5196340392276405b47e531e5713047eae3082df2cae593057 3 | size 22016 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Mono.Posix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fee4a2e8c314c9b4b99b69394b868d81 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Mono.Posix/Mono.Posix.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bda42c2c2c6d83a5c840d5262bfb1ae0e24e3c1778c96d5ea1ff96a1bb244f70 3 | size 184320 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2143f9bdd90d743ab33952e07ee667 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": true 3 | } 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2143f9bdd90d743ab33952e07eeaaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Tests/Editor/UnityTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 167826724cd79ab4bbb10ccce9b896ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Tests/Editor/com.unity.git.api.tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b1b2476bf9e3b4aa938c2beda88280 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Third Party Notices - net35.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7deadaeaa5dc5e5478ed997842aaad3b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/Third Party Notices.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7deadaeaa5dc5e5478ed997842aaad3a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44393058f8f71364f9e7f749d311deae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/.npmignore: -------------------------------------------------------------------------------- 1 | upm-ci~/** 2 | .Editor/** 3 | .yamato/** 4 | *.zip* 5 | TestRunnerOptions.json 6 | .idea/** -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f876060e803c44909fceef442517d77c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Documentation~/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/src/com.unity.git.api/com.unity.editor.tasks/Documentation~/.gitignore -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2c7d72d9ff361848b285537c5d7e40d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22be4a444096d984cb620b76dc7cdcfd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 264c5b3c130a6534dbe1a31c81d7247f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7de152f75b33ae4daffc118a94279d5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27010d7290cdc8f4bb39191e71c249ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d5785dd834e9c46af369ac7c0d3da5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 126e895522445034e84dfd5570ff9ccd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Logging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ccc381e5005d504289bf8f07f20b5d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/OutputProcessor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 151861ea7a9c0334bb5ca176c6b74ac1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Processes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: badec29a30c6ab4408df3f0b5118dbd0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e63338247f565cd4ba2961bfb6935469 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Schedulers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 495ba413269b71348b80dd701b62547a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce106fe8acc3f834898b1b0802e17388 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/Tasks/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 114bdc48d851ddd4194510b1b348c61d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/Editor/com.unity.editor.tasks.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 108628fb52f17ba4bbd747c154310585 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d76dd5a2735648d6b248f83bbd05fdda 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7f02117bf3349b7a2c5b1cf9bf148c3 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/com.unity.editor.tasks/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b2337ee5d345249a95629f3fc37c95 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c458c5747ad5a5447b3e00989456e821 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10a2378e0ca35da47bf333d56d66fba3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/linux.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 784b2a667aebff4468dbb845e736eab2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/linux/libsfw.so: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58b22b85b527a7ae2df8aeea6a961a65d40198f3c92be0ae6bc48ef2c1eb17c5 3 | size 638138 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/linux/version: -------------------------------------------------------------------------------- 1 | 362b801 -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/linux/version.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae010e2aa5ac0624da6b74c571503f4d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e050fdbbca7578640a9ed059ba4f8edb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/mac/libsfw.bundle: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:499af15a02a7c9090694f9e7e9dd6d8abd01c5bb1a5e925547cfa42da7aec78c 3 | size 54180 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/mac/version: -------------------------------------------------------------------------------- 1 | 362b801 -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/mac/version.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0326268ef689ce043aeecca047d39f4a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/sfw.net.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21feeaa73e42bf03e86525bc5e1b954f4b9a2f16eed58a87c69e576509231480 3 | size 7168 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5df3fb1bc47444469c39d216ec13587 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/.gitignore: -------------------------------------------------------------------------------- 1 | *.exp 2 | *.iobj 3 | *.ipdb 4 | *.ilk 5 | *.lib 6 | test-console.* -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/version: -------------------------------------------------------------------------------- 1 | 362b801 -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/version.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a715c0af1bae454cb7d28ecf43f1e94 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95923ef29d26ae843ab3f610dafd8eb4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x64/pthreadVC2.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e6af724609ef6846982ef717013426c359c455fff324e906d8d55c8bb88d16e 3 | size 82944 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x64/sfw_x64.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f8d586e00ddbe3cfa0cd2446bdd416a65e6c12ef31e7f451af14867b880c0dc 3 | size 182784 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ceb8520103610564c8e3f52fdaafe359 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x86/pthreadVC2.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac4472990c1dc2f037019791bd18888e78a3ae86605f3aae86f812a4d7d4f60 3 | size 55808 4 | -------------------------------------------------------------------------------- /src/com.unity.git.api/sfw/win/x86/sfw_x86.dll: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843682e312df272a4222e2ba85f4feebfb0195524f101ef9f636f56ae0e0af21 3 | size 179200 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/.npmignore: -------------------------------------------------------------------------------- 1 | git*.zip* 2 | *.csproj* 3 | *.ncrunch* 4 | .npmignore 5 | .npmignore-net35 6 | 7 | # some directories we don't want 8 | obj/** 9 | obj.meta 10 | node_modules/** 11 | node_modules.meta 12 | Third Party Notices - net35.md 13 | Third Party Notices - net35.md.meta 14 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/.npmignore-net35: -------------------------------------------------------------------------------- 1 | git*.zip* 2 | *.csproj* 3 | *.ncrunch* 4 | .npmignore 5 | .npmignore-net35 6 | 7 | # some directories we don't want 8 | obj/ 9 | obj.meta 10 | node_modules/ 11 | node_modules.meta 12 | UnityTests/ 13 | UnityTests.meta 14 | Third Party Notices.md 15 | Third Party Notices.md.meta 16 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 4 | 5 | ## [VERSION] - DATE 6 | 7 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06fdcfe4f8484550b1af50400da4c917 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Documentation~/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/src/com.unity.git.ui/Documentation~/.gitignore -------------------------------------------------------------------------------- /src/com.unity.git.ui/Documentation~/com.unity.git.ui.md: -------------------------------------------------------------------------------- 1 | # About <Git for Unity> 2 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a582b42df253ae748bf23fee4ff9d325 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da73846e2f35f744cbf306c9ba441e52 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/added.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03fb7a0a76165f2acd56d059479e06449685d5ec09860aa6a682848135bc8b61 3 | size 297 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/added@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53ef1617931c4809f72fa88154d11e355cfa4d8c3d578a22babcb1843c589efc 3 | size 445 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/big-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6e2be7ba80cbf9882942d2f937c26d71057d62360da5b688d1834ba3a529125 3 | size 3664 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/big-logo-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3fccc1e58ff0b6676f2af3798497deb6222dc907267c251bbc347d52587c770 3 | size 7959 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/big-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4022c95836c67dbd0263cb2ab19c6a976e4fcc3b7178ef5e06224f09d25d716c 3 | size 3819 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/big-logo@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61d3adaf1345bacf3000984b592ee3a90cc63e832b728e586c76b2a14e0783e1 3 | size 8180 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/branch-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffc615bfa576f7deae94e30b6a391d8a0c4c037a6e0682804fbf2355d32d71fb 3 | size 314 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/branch-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17f700924a2925d049aa971ab4935b118485171a3d8821b163162573e6d1950a 3 | size 630 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/branch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f81e386087c2aaf5c9ecd7203758cabaff986bae6dc6378d5589845bedf89e8e 3 | size 440 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/branch@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2447a29ed977f3e33ffc4be80e9b30c39c59ee51154798fc5d8bf9d453e3542 3 | size 902 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/code.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c602dae03ca5b625711036cd63a7b3010f032830fc89c5201b55d047600b0a 3 | size 874 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/code@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c602dae03ca5b625711036cd63a7b3010f032830fc89c5201b55d047600b0a 3 | size 874 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/conflicted.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0daddc4183671949ff2296fce45cff0fbdd19e602fa65586958d1743e333f2d 3 | size 451 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/conflicted@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e21e0d04a1a029cb015a645c17126e390aab843fd1ef87f6f182ca12b06ef3e9 3 | size 813 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/current-branch-indicator-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f35bee3fae0ddd9e55ca52cf061a2effd13201c21fa78de65a38d5ad755e95ec 3 | size 165 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/current-branch-indicator-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c561708852cbeb22d7aa6199a1f067144ac3c0fa7b77e22fe96dae29a97aaa0 3 | size 220 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/current-branch-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7530ce8cccbe9da0682c4a7c9913b6f3a22959bfa71b326e919bc861a11e0db 3 | size 159 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/current-branch-indicator@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38d0774712e799e621c071c1bc0ae3c0e5a753619e241d497401d16bd8639813 3 | size 218 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dot-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65f33790bb385f0d13c05bab2187f45c7eb7e57ce40365217a0a82006a9738ea 3 | size 161 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dot-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58dc280b08ab0d98beda5477c6310d43929ef1b8c976fe39968b7800ae1ca7e0 3 | size 249 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dot.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa7d3e3740bd474fa7c12ff1300def7015e2623843cb8f61108dda57f7d6722e 3 | size 151 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dot@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3aa87be99d87d3dd9cc36513e16516c7579e386aeaa80a7e61d2bfbb322e6dbc 3 | size 244 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dropdown-list-icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9e731827ff000c7c961bb7b94e3bd0575dd7a994e89784e13ec0593ae6727d5 3 | size 142 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/dropdown-list-icon@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:830334d5d1c0bc7b84a0048888cba36667570e65af57847db79837c29da8b1c3 3 | size 189 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/empty-state-init.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee3c66f73cbb96d92aef34f0ef7eb9e615db83fa83b810cbc2c4eea825bd1e4c 3 | size 5571 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/empty-state-init@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea0086690444613755947b3bc2b25390f860a362126c4a92d222da9c65ed4790 3 | size 14242 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/favorite-branch-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f2263ee0bca667ab77873a0782c9187d3932c5b75cc2d93f1fec3ebf9a9e81e 3 | size 551 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d1674668c8f437e2488fcec8240b43c938359c0ab5ab7047e5456332bf05f7a 3 | size 2383 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-logo-orange.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6df2fb8c4b89a8e76c9fbf7b0b9e5d26266c2014a6493f14800d7b4e184bd70 3 | size 2383 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e874de32cdb3933f7bf56db6efba90ca24ddfccccd94fddc62edb13b9f063f8 3 | size 2383 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-merge-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dfbb168f345b600150a76f679d9b7e0c31bd889957afe33c4f8fd612226e31f 3 | size 271 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-merge-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23d2ce0c87306d276aa966fa7a347cd1def9521d8c847ab4dcfb67ae98861d22 3 | size 510 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-merge.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbd22b6a3777941cef095a4df054c9afca5ab11069f145a5695af4ab7aa3724f 3 | size 254 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/git-merge@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39bda8148e6afc91292b026cc083dea68f1a92f2c415bb6dacd11a8971ca6a9c 3 | size 486 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/globe.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b65bf8e330ede5edc0ae8d620a01f7003fbfdcd1053667c016a103b8ad49a934 3 | size 594 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/globe@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3051c3d5ba2726bf3b9877a44f41ec7f3a68a79afe40bf7fde0f65db1a542b18 3 | size 1318 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit-icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a9f8bbc256c16bf1abc9270e36d2c17033b554d1db5f813a545a2a140b530da 3 | size 163 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit-icon@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f8c08a0be76a1208923160c640c243dd92b2c71f3c1f60bba582c6e1af7f6f0 3 | size 298 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20b27e9cabb5a7917ae0040e5829f26ea88ffdccd4e86b67790bf09aa6a7f8d3 3 | size 177 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53383727beab26485db1e700f2522dc936c2211a10fd859507ba0ac8563ab1e5 3 | size 294 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a9f8bbc256c16bf1abc9270e36d2c17033b554d1db5f813a545a2a140b530da 3 | size 163 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/local-commit@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f8c08a0be76a1208923160c640c243dd92b2c71f3c1f60bba582c6e1af7f6f0 3 | size 298 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/lock-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31dde16e146fdcfa55281e0cf14ee7a962fac1672bc1c0c2645f97052d174c3b 3 | size 237 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/lock-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02dc38dc38288321430dcee6eae5f6652a3687c4cfcdfb967b8128e35de55b97 3 | size 441 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/lock.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3e7a436b328603772e6f04891606ff57554ca4e6333ca344d7456c5cc7305d52 3 | size 224 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/lock@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:467cb1d2ecc72df7756f6e839750340d0a74d84f3dfb6380175c3c9f9c8caeb1 3 | size 377 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-by-person.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad6ff55f35cfb300839d21b7f5ff91dfb45e09ffc93786aca5c347499ca09b80 3 | size 558 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-by-person@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bb53dcc8a698a42165085aca9bb8df6beb845962856a1b2bf2851c3f0c59931 3 | size 1040 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-modified.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:339e12a6165f1b9c3b22ca085d9fd696489819c7dc4b12c9381b98c347bab69c 3 | size 484 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-modified@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a17d706e23de1dba088c2eb6c224fb3f0340a955d6e1aab9179f2037b738aec5 3 | size 842 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-removed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6718df0dfd3422d009462822ac1abe91743b0b66bba35f2e398735d336895d57 3 | size 421 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked-removed@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a238da7768ee03caa3b968e2eac9ae6198843a2c9a65da508fb8fdfc65a58a99 3 | size 741 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c780eb973ee0921539af573c3f6c49551c260eeec2621dd11982fa8aa6bf6436 3 | size 449 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/locked@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a498fed167957c63a30601235450d8823ad222b68553fa8f2dbe2120818ff6f 3 | size 767 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/merge.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9f1d0d6fbbabe847e8309acee1686b0f2a0674f6ef56d8dba51e0ad003732e6 3 | size 915 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/merge@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9f1d0d6fbbabe847e8309acee1686b0f2a0674f6ef56d8dba51e0ad003732e6 3 | size 915 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/modified.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:500391b94a8e3102af23101c5eafaf044482047a00485b428c5d82fd0ba80506 3 | size 297 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/modified@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b88f202076d1c213287ce3736bcf9c97f77607c6d50b2e21cb8e8f02c7defe2 3 | size 530 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/removed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23d43e30cb0f64cb88c5a1c4e880bf33a8add8429e5bf25fd7e4196d5f945a88 3 | size 209 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/removed@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80a6f4a23c30fa53fd29c3e64b32ecc2d794ce8f2b9d49149a45ce1e4a1ee053 3 | size 345 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/renamed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef8ff7374850ddc8a99a45ffdf5ee6de2eeb77a560bbb317e84fb9e4d3b1d6b1 3 | size 345 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/renamed@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d6b3ccb10c917b8c66091799b7066331dd5d5a5ee2bc54a1643e95ce279bc3a 3 | size 526 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/repo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1695c6ea8386a68be50a82c64f15268db1c353aff3028982275d1402f376ebfb 3 | size 301 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/repo-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4eda32fe42c1c808626ea87033840371a8336e3bf58e29cb7843ed99d1ecc8a 3 | size 548 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/repo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82a3ef89dae8a950b9a7289afac0d25dda151df9deec6ea7992130049cc28510 3 | size 287 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/repo@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:552eef88c0cd14b51abfc4e683c9b1049f54bcf43f307c892b576bd6cbd85b96 3 | size 523 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/rocket.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ff45333e52a3a5139f12cdc56389928eb269111d3c5e364f99db3a5fb15a4bf 3 | size 919 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/rocket@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ff45333e52a3a5139f12cdc56389928eb269111d3c5e364f99db3a5fb15a4bf 3 | size 919 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/small-logo-light.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c2ac78cbdd48e5db0d88b6a48c6a8d8a55382c4aea2f32d4ad2c5f393408f36 3 | size 430 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/small-logo-light@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e353b7a4785145d38adcd432cc97d54c2f6696393461eaa05ccebd0a500898a8 3 | size 987 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/small-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3aae7f12c6c41555b2f35808ddb14ab18390158a38ef690717480c7316a1fc1 3 | size 493 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/small-logo@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a97edbd9ccbb6fcd9d7ce89096a4c96d8ba35172e765e45620048e92978bb767 3 | size 1091 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-inside.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c2ac78cbdd48e5db0d88b6a48c6a8d8a55382c4aea2f32d4ad2c5f393408f36 3 | size 430 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-inside@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e353b7a4785145d38adcd432cc97d54c2f6696393461eaa05ccebd0a500898a8 3 | size 987 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-outside.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1ae2584fdc78b6565110ca29f1e3fe90f3ae06a23b04cddac7e33f1d26828ad 3 | size 12001 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-outside@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1ae2584fdc78b6565110ca29f1e3fe90f3ae06a23b04cddac7e33f1d26828ad 3 | size 12001 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-sprite.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ba2ab3d60e75772eb280cde78ae8f02dae8b79d9780c5a5261c86346bf88467 3 | size 5053 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/spinner-sprite@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64897c2c664faec7d5d0a83c85073d2a2c08ab788c1b4bdb7d29e0fabefef9a8 3 | size 11078 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/tracked-branch-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11bcc30f85a687730ac9a271c50a4417e960327f0c65f151e27a44995cb651a5 3 | size 335 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/untracked.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03fb7a0a76165f2acd56d059479e06449685d5ec09860aa6a682848135bc8b61 3 | size 297 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/IconsAndLogos/untracked@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53ef1617931c4809f72fa88154d11e355cfa4d8c3d578a22babcb1843c589efc 3 | size 445 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e711ebc91176846ba72a3d04748cc5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/Misc/Styles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8114ffadf136bde438da5dbd37b7beec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/Misc/Utility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c6885f8658124740a892318d91bf9be 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/RunLocationShim.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Unity.VersionControl.Git 4 | { 5 | class RunLocationShim : ScriptableObject 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/SolutionInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87356c834b7c87a43b1d9eb40e76396b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI.csproj.DotSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75da0256a30a53e46b8ae1f912fe2faa 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f034aaea3e299e40911691f33ca3a1e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de45cec9ce1656c4b9fc56c61600e43b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI.v3.ncrunchproject: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | 5 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI.v3.ncrunchproject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc66f64b31312240b753113b6e58804 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/BaseWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f88a687c666db9248ae3a44c75da9e24 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/IView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb74d0aa41d894f40a36e85272b64a55 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/LocksView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96e2e749c7b0324cb135b02db65745f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/Menus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f19df67202b898941bef8c5c41e8ab43 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/Spinner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cb1cfd69f2d10d4291463177fd699b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/UI/Subview.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3387a640998dc804c99fb48fd6cbe6b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Editor/com.unity.git.ui.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a710f4edf08c23428cb1ce6807b17d9 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 257e89214eebaed4cbde244383e2da59 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3057babddc6faf4e918dbee8fcc736c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/SolutionInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b27d67b98387cdd4982b0346dfbebd05 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/UnityShim.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a12816d1438581c47bbc1787df247577 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/UnityShim.csproj.DotSettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ce13532168cdea4e8efd11d0279d7d5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/UnityShim.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffe6a08aeb76af34389e5d0e801cdcfd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/com.unity.git.shim.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.unity.git.shim", 3 | "references": [ 4 | ], 5 | "optionalUnityReferences": [], 6 | "includePlatforms": [ 7 | "Editor" 8 | ], 9 | "excludePlatforms": [], 10 | "autoReferenced": false, 11 | "allowUnsafeCode": false 12 | } -------------------------------------------------------------------------------- /src/com.unity.git.ui/Shim/com.unity.git.shim.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c34095c59d372f478b24a9c92e14b62 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2143185dd90d743ab33952e07ee28a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": true 3 | } 4 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc2143f9bdd90d743ab33952e07eebbb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests/Editor/Tests.cs: -------------------------------------------------------------------------------- 1 | using NUnit.Framework; 2 | using System.Collections; 3 | 4 | public class UITests 5 | { 6 | [Test] 7 | public void TestStub() 8 | { 9 | Assert.AreEqual(1, 1); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests/Editor/Tests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c90d3ecbc1b870419a1111f0dc2cb2b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Tests/Editor/com.unity.git.ui.tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b1b2476bf9e3b4aa938c2beda88aaa 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Third Party Notices - net35.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7deadaeaa5dc5e5478ed997842aaad3c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/Third Party Notices.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e10e16c0273eb74e8d7d19c7210fb82 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git.ui/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0639a8f62912a64e85d372aba14659d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 4 | 5 | ## [VERSION] - DATE 6 | 7 | -------------------------------------------------------------------------------- /src/com.unity.git/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a809619a1fd45f096325888ac006dd8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3edb970d21fadc649b057bf6cc909915 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git/Editor/Git.csproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0502f30c9c7644c46bfba2c719fea000 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 332d3833e68db2b4198153529ac50d26 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cc836cb317fe824b9fb73fde9b537dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": true 3 | } 4 | -------------------------------------------------------------------------------- /src/com.unity.git/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b994005b9403ee4fb5fdb22c5f1fe9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /src/com.unity.git/Tests/Editor/com.unity.git.tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed4359109abc2f444929eccc95e35a64 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/Third Party Notices.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2efab4ab5c489d148826d40134505750 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/com.unity.git/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 286fbe30ea94cd1498dd5fe425a0a873 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /src/preview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82a8bda13a627b1bdb25d6cfd2abeedbc190b8ab5ba8a67a785e929f6967fccb 3 | size 9704 4 | -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | setlocal 3 | 4 | if "%~1"=="--yamato" goto yamato 5 | goto normal 6 | 7 | :yamato 8 | call powershell scripts\Test.ps1 -Yamato 9 | goto end 10 | 11 | :normal 12 | call powershell scripts\Test.ps1 13 | goto end 14 | 15 | :end 16 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | !*.tar.gz 2 | !*.zip -------------------------------------------------------------------------------- /tests/CommandLine/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/CommandLine/CommandLine.v3.ncrunchproject: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | 5 | -------------------------------------------------------------------------------- /tests/IntegrationTests/IOTestsRepo.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bc96f614ee53c6da3e48b2dd7976dc7df83a7b565436c12e178ac54e21f6012 3 | size 127205 4 | -------------------------------------------------------------------------------- /tests/IntegrationTests/UnzipTaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/tests/IntegrationTests/UnzipTaskTests.cs -------------------------------------------------------------------------------- /tests/IntegrationTests/UnzipTestResources/testfile.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3e86051653bbcf5e22d8a3095503935da538ed34130f3105b5f029653dfe986 3 | size 169 4 | -------------------------------------------------------------------------------- /tests/IntegrationTests/UnzipTestResources/testfile.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/tests/IntegrationTests/UnzipTestResources/testfile.tgz -------------------------------------------------------------------------------- /tests/IntegrationTests/UnzipTestResources/testfile.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ad7522b5560342a69d0bf11475dc9d5eb7de15d58ba51cbb9ce09b043a2e871 3 | size 200 4 | -------------------------------------------------------------------------------- /tests/TestUtils/TestUtils.v3.ncrunchproject: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | 6 | -------------------------------------------------------------------------------- /tests/TestUtils/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-macOS.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:717a5d215331875e1ad0a44d1f9c2187c44b7a5aaa258dbb6cc16feffd5f3f3d 3 | size 15372751 4 | -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-macOS.tar.gz.sha256: -------------------------------------------------------------------------------- 1 | 717a5d215331875e1ad0a44d1f9c2187c44b7a5aaa258dbb6cc16feffd5f3f3d -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-ubuntu.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:489bea48266fe3bc0df2cd27d92a5658c1d1e048c3f3a65efb753c2348fcceef 3 | size 17413099 4 | -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-ubuntu.tar.gz.sha256: -------------------------------------------------------------------------------- 1 | 489bea48266fe3bc0df2cd27d92a5658c1d1e048c3f3a65efb753c2348fcceef -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-windows-x64.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f40038f43b726d57632e70a93bafeaa13ef50c4e18179186168ce8e1eff70a7 3 | size 25735952 4 | -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-windows-x64.tar.gz.sha256: -------------------------------------------------------------------------------- 1 | 8f40038f43b726d57632e70a93bafeaa13ef50c4e18179186168ce8e1eff70a7 -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-windows-x86.tar.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bcde5a24ce070c929ff3c7ee43dfd011ecf85512977ff369821757abb8e7677 3 | size 25705621 4 | -------------------------------------------------------------------------------- /tests/TestWebServer/files/git/downloads/dugite-native-v2.21.0-ba7ade8-windows-x86.tar.gz.sha256: -------------------------------------------------------------------------------- 1 | 0bcde5a24ce070c929ff3c7ee43dfd011ecf85512977ff369821757abb8e7677 -------------------------------------------------------------------------------- /tests/TestWebServer/files/unity/generate-latest-json-for-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eu 2 | ../../../../../generate-package.sh ghu 99.2.0-beta1 releases/github-for-unity-99.2.0-beta1.unitypackage http://localhost:50000 releases/releasenotes.txt releases/message.txt > latest.json -------------------------------------------------------------------------------- /tests/TestWebServer/files/unity/releases/github-for-unity-99.2.0-beta1.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/Git-for-Unity/54501c751251532c37eff57ba0f42773695387c2/tests/TestWebServer/files/unity/releases/github-for-unity-99.2.0-beta1.unitypackage -------------------------------------------------------------------------------- /tests/UnityApiTests/UnityApiTests.v3.ncrunchproject: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | 5 | -------------------------------------------------------------------------------- /tests/UnityUITests/UnityUITests.v3.ncrunchproject: -------------------------------------------------------------------------------- 1 |  2 | 3 | True 4 | 5 | --------------------------------------------------------------------------------