├── .gitignore ├── .idea ├── .name ├── ant.xml ├── artifacts │ ├── git_agent_jar.xml │ ├── git_common_jar.xml │ ├── git_server_jar.xml │ ├── git_server_tc_jar.xml │ ├── plugin.xml │ ├── vcs_worker.xml │ └── zip.xml ├── codeStyleSettings.xml ├── compiler.xml ├── copyright │ ├── open_source.xml │ └── profiles_settings.xml ├── dictionaries │ ├── Constantin_Plotnikov.xml │ └── nd.xml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── libraries │ ├── JavaEWAH.xml │ ├── TeamCity_Agent.xml │ ├── TeamCity_Agent_OAuth.xml │ ├── TeamCity_Common_Connection_API.xml │ ├── TeamCity_Open_API_agent.xml │ ├── TeamCity_Open_API_common.xml │ ├── TeamCity_Open_API_server.xml │ ├── TeamCity_Tests.xml │ ├── TeamCity_Third_Party.xml │ ├── TeamCity_Vcs_Api.xml │ ├── TeamCity_common.xml │ ├── TeamCity_patches.xml │ ├── TeamCity_server.xml │ ├── TestLibs.xml │ ├── Tomcat.xml │ ├── Trilead_SSH.xml │ ├── commons_codec.xml │ ├── httpclient.xml │ ├── jgit.xml │ ├── jgit_server.xml │ ├── jsch.xml │ ├── org_eclipse_egit_github_core_2_4_0_SNAPSHOT.xml │ ├── org_testcontainers_testcontainers_1_16_0.xml │ ├── quartz_2_3_2.xml │ └── slf4j_api_1_7_5.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── auth_git_tests.xml │ ├── native_git_tests.xml │ ├── tests.xml │ └── tests_server_native_git.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── LICENSE.md ├── README.md ├── git-agent ├── git-agent ├── git-agent-internal ├── pom.xml ├── src │ └── main │ │ ├── java │ │ ├── jetbrains │ │ │ └── buildServer │ │ │ │ └── buildTriggers │ │ │ │ └── vcs │ │ │ │ └── git │ │ │ │ └── agent │ │ │ │ ├── AgentCommitLoader.java │ │ │ │ ├── AgentCommitLoaderFactory.java │ │ │ │ ├── AgentControlClient.java │ │ │ │ ├── AgentGitCommandLine.java │ │ │ │ ├── AgentGitFacade.java │ │ │ │ ├── AgentGitFacadeImpl.java │ │ │ │ ├── AgentGitVcsRoot.java │ │ │ │ ├── AgentMirrorCleaner.java │ │ │ │ ├── AgentMirrorConfig.java │ │ │ │ ├── AgentPluginConfig.java │ │ │ │ ├── AgentStartupGitDetector.java │ │ │ │ ├── BuildContext.java │ │ │ │ ├── CheckoutDirectoryCleaner.java │ │ │ │ ├── CheckoutMode.java │ │ │ │ ├── CommonURIishImpl.java │ │ │ │ ├── FS.java │ │ │ │ ├── FSImpl.java │ │ │ │ ├── FetchHeadsMode.java │ │ │ │ ├── GCIdleTask.java │ │ │ │ ├── GitAgentSSHService.java │ │ │ │ ├── GitAgentVcsSupport.java │ │ │ │ ├── GitBuildProgressLogger.java │ │ │ │ ├── GitDetector.java │ │ │ │ ├── GitDetectorImpl.java │ │ │ │ ├── GitFactory.java │ │ │ │ ├── GitFactoryImpl.java │ │ │ │ ├── GitMetaFactory.java │ │ │ │ ├── GitMetaFactoryImpl.java │ │ │ │ ├── GitPathResolver.java │ │ │ │ ├── GitPathResolverImpl.java │ │ │ │ ├── GitUtilsAgent.java │ │ │ │ ├── JSchClient.java │ │ │ │ ├── PluginConfigFactory.java │ │ │ │ ├── PluginConfigFactoryImpl.java │ │ │ │ ├── PluginConfigImpl.java │ │ │ │ ├── RemoteRepositoryConfigurator.java │ │ │ │ ├── RemoteRepositoryUrlInvestigatorImpl.java │ │ │ │ ├── ShallowUpdater.java │ │ │ │ ├── SshKeyManagerProviderImpl.java │ │ │ │ ├── SubmoduleManager.java │ │ │ │ ├── SubmoduleManagerImpl.java │ │ │ │ ├── URIishHelperImpl.java │ │ │ │ ├── Updater.java │ │ │ │ ├── UpdaterImpl.java │ │ │ │ ├── UpdaterWithAlternates.java │ │ │ │ ├── UpdaterWithMirror.java │ │ │ │ ├── VcsRootSshKeyManagerProvider.java │ │ │ │ ├── command │ │ │ │ ├── AddRemoteCommand.java │ │ │ │ ├── Branches.java │ │ │ │ ├── CheckoutCommand.java │ │ │ │ ├── CleanCommand.java │ │ │ │ ├── CleanCommandUtil.java │ │ │ │ ├── CloneCommand.java │ │ │ │ ├── CreateBranchCommand.java │ │ │ │ ├── DeleteBranchCommand.java │ │ │ │ ├── DeleteTagCommand.java │ │ │ │ ├── GcCommand.java │ │ │ │ ├── LogCommand.java │ │ │ │ ├── LsTreeCommand.java │ │ │ │ ├── LsTreeResult.java │ │ │ │ ├── MergeCommand.java │ │ │ │ ├── PackRefs.java │ │ │ │ ├── Refs.java │ │ │ │ ├── ResetCommand.java │ │ │ │ ├── RevParseCommand.java │ │ │ │ ├── SetUpstreamCommand.java │ │ │ │ ├── ShowRefCommand.java │ │ │ │ ├── ShowRefResult.java │ │ │ │ ├── SubmoduleInitCommand.java │ │ │ │ ├── SubmoduleSyncCommand.java │ │ │ │ ├── SubmoduleUpdateCommand.java │ │ │ │ ├── UpdateIndexCommand.java │ │ │ │ ├── UpdateRefBatchCommand.java │ │ │ │ └── impl │ │ │ │ │ ├── AddRemoteCommandImpl.java │ │ │ │ │ ├── CheckoutCommandImpl.java │ │ │ │ │ ├── CleanCommandImpl.java │ │ │ │ │ ├── CloneCommandImpl.java │ │ │ │ │ ├── CreateBranchCommandImpl.java │ │ │ │ │ ├── DeleteBranchCommandImpl.java │ │ │ │ │ ├── DeleteTagCommandImpl.java │ │ │ │ │ ├── GcCommandImpl.java │ │ │ │ │ ├── LogCommandImpl.java │ │ │ │ │ ├── LsTreeCommandImpl.java │ │ │ │ │ ├── MergeCommandImpl.java │ │ │ │ │ ├── PackRefsImpl.java │ │ │ │ │ ├── ResetCommandImpl.java │ │ │ │ │ ├── RevParseCommandImpl.java │ │ │ │ │ ├── SetUpstreamCommandImpl.java │ │ │ │ │ ├── ShowRefCommandImpl.java │ │ │ │ │ ├── SshHandler.java │ │ │ │ │ ├── SubmoduleInitCommandImpl.java │ │ │ │ │ ├── SubmoduleSyncCommandImpl.java │ │ │ │ │ ├── SubmoduleUpdateCommandImpl.java │ │ │ │ │ ├── UpdateIndexCommandImpl.java │ │ │ │ │ └── UpdateRefBatchCommandImpl.java │ │ │ │ └── ssl │ │ │ │ ├── SSLConnectionCheck.java │ │ │ │ └── SSLInvestigator.java │ │ └── org │ │ │ └── jetbrains │ │ │ └── git4idea │ │ │ ├── ssh │ │ │ ├── GitSSHHandler.java │ │ │ └── GitSSHService.java │ │ │ └── util │ │ │ ├── FastByteArrayBuilder.java │ │ │ └── ScriptGenerator.java │ │ └── resources │ │ └── META-INF │ │ └── build-agent-plugin-git.xml └── teamcity-plugin.xml ├── git-common ├── git-common ├── git-common-internal ├── pom.xml └── src │ └── main │ └── java │ └── jetbrains │ └── buildServer │ └── buildTriggers │ └── vcs │ └── git │ ├── AgentCheckoutPolicy.java │ ├── AgentCleanFilesPolicy.java │ ├── AgentCleanPolicy.java │ ├── AuthSettings.java │ ├── AuthSettingsImpl.java │ ├── AuthenticationMethod.java │ ├── CommandLineUtil.java │ ├── CommonURIish.java │ ├── Constants.java │ ├── ExtraHTTPCredentials.java │ ├── ExtraHTTPCredentialsImpl.java │ ├── GitCommandCredentials.java │ ├── GitProgressLogger.java │ ├── GitRemoteUrlInspector.java │ ├── GitURLMapper.java │ ├── GitUtils.java │ ├── GitVcsRoot.java │ ├── GitVersion.java │ ├── HashCalculator.java │ ├── HashCalculatorImpl.java │ ├── MirrorConfig.java │ ├── MirrorManager.java │ ├── MirrorManagerImpl.java │ ├── PluginConfig.java │ ├── PropertiesHelper.java │ ├── ProxyHandler.java │ ├── RemoteRepositoryUrlInvestigator.java │ ├── Retry.java │ ├── SubmodulesCheckoutPolicy.java │ ├── URIishHelper.java │ ├── agent │ └── command │ │ ├── RepackCommand.java │ │ └── impl │ │ └── RepackCommandImpl.java │ ├── command │ ├── AddCommand.java │ ├── AuthCommand.java │ ├── BaseCommand.java │ ├── CommitCommand.java │ ├── CommitsTouchingPathsCommand.java │ ├── Context.java │ ├── CountObjectsCommand.java │ ├── DiffCommand.java │ ├── FetchCommand.java │ ├── FsckCommand.java │ ├── GitCommandLine.java │ ├── GitCommandSettings.java │ ├── GitConfigCommand.java │ ├── GitExec.java │ ├── GitFacade.java │ ├── InitCommand.java │ ├── InitCommandResult.java │ ├── ListConfigCommand.java │ ├── LsRemoteCommand.java │ ├── PushCommand.java │ ├── RemoteCommand.java │ ├── SetConfigCommand.java │ ├── StatusCommand.java │ ├── TagCommand.java │ ├── UpdateRefCommand.java │ ├── VersionCommand.java │ ├── credentials │ │ ├── CredentialsHelper.java │ │ ├── CredentialsHelperConfig.java │ │ └── ScriptGen.java │ ├── errors │ │ ├── CheckoutCanceledException.java │ │ ├── Errors.java │ │ ├── GitExecTimeout.java │ │ ├── GitIndexCorruptedException.java │ │ ├── GitOutdatedIndexException.java │ │ └── SshKeyNotFoundException.java │ ├── impl │ │ ├── AddCommandImpl.java │ │ ├── BaseAuthCommandImpl.java │ │ ├── BaseCommandImpl.java │ │ ├── CommandUtil.java │ │ ├── CommitCommandImpl.java │ │ ├── CommitsTouchingPathsCommandImpl.java │ │ ├── CountObjectsCommandImpl.java │ │ ├── DiffCommandImpl.java │ │ ├── EscapeEchoArgument.java │ │ ├── EscapeEchoArgumentUnix.java │ │ ├── EscapeEchoArgumentWin.java │ │ ├── FetchCommandImpl.java │ │ ├── FsckCommandImpl.java │ │ ├── GitConfigCommandImpl.java │ │ ├── GitFacadeImpl.java │ │ ├── GitProgressListener.java │ │ ├── InitCommandImpl.java │ │ ├── ListConfigCommandImpl.java │ │ ├── LsRemoteCommandImpl.java │ │ ├── ProcessTimeoutCallback.java │ │ ├── PushCommandImpl.java │ │ ├── RefImpl.java │ │ ├── RemoteCommandImpl.java │ │ ├── SetConfigCommandImpl.java │ │ ├── StatusCommandImpl.java │ │ ├── StubContext.java │ │ ├── TagCommandImpl.java │ │ ├── UnixScriptGen.java │ │ ├── UpdateRefCommandImpl.java │ │ ├── VersionCommandImpl.java │ │ └── WinScriptGen.java │ └── ssl │ │ └── SslOperations.java │ ├── gitProxy │ ├── GitApiClient.java │ ├── GitApiClientFactory.java │ ├── GitApiClientFactoryBase.java │ ├── GitApiException.java │ ├── GitProxySettings.java │ ├── GitRepoApi.java │ └── data │ │ ├── ChangeType.java │ │ ├── Commit.java │ │ ├── CommitChange.java │ │ ├── CommitInfo.java │ │ ├── CommitList.java │ │ ├── EntryType.java │ │ ├── FileChange.java │ │ ├── JsonRequest.java │ │ └── Person.java │ ├── jgit │ └── LenientSystemReader.java │ └── jsch │ └── SshPubkeyAcceptedAlgorithms.java ├── git-dsl └── Git.xml ├── git-server-tc ├── git-server-tc ├── git-server-tc-internal ├── pom.xml └── src │ └── main │ ├── java │ └── jetbrains │ │ └── buildServer │ │ └── buildTriggers │ │ └── vcs │ │ └── git │ │ ├── CachingNativeGitTestConnectionRunner.java │ │ ├── CleanupCustomizer.java │ │ ├── GitBranchSupport.java │ │ ├── GitBuildParametersProvider.java │ │ ├── GitClonesUpdater.java │ │ ├── GitCustomizeVcsRootExtension.java │ │ ├── GitDiagnosticsTab.java │ │ ├── GitExtensionRegistry.java │ │ ├── GitExternalChangeViewerExtension.java │ │ ├── GitMainConfigProcessor.java │ │ ├── GitSubmodulesUsageStatistics.java │ │ ├── GitUrlSupportInitializer.java │ │ ├── SpaceExternalChangeViewerExtension.java │ │ ├── TrustedCertificatesInitializer.java │ │ └── health │ │ ├── GitAgentVersionHealthPage.java │ │ ├── GitAgentVersionHealthReport.java │ │ ├── GitGcErrorsHealthPage.java │ │ ├── GitGcErrorsHealthReport.java │ │ ├── GitLocalFileUrlHealthPage.java │ │ ├── GitLocalFileUrlHealthReport.java │ │ ├── GitNotFoundHealthPage.java │ │ ├── GitNotFoundHealthReport.java │ │ ├── GitServerVersionHealthPage.java │ │ ├── GitServerVersionHealthReport.java │ │ ├── SwitchToNativeGitHealthPage.java │ │ └── SwitchToNativeGitHealthReport.java │ └── resources │ └── META-INF │ ├── build-server-plugin-git-tc.xml │ └── do-not-load-in-vcs-mode ├── git-server ├── git-server ├── git-server-internal ├── pom.xml └── src │ └── main │ ├── java │ ├── jetbrains │ │ └── buildServer │ │ │ └── buildTriggers │ │ │ └── vcs │ │ │ └── git │ │ │ ├── AddCommandServer.java │ │ │ ├── AuthCredentialsProvider.java │ │ │ ├── AutoCloseRepositoryCache.java │ │ │ ├── ChangeType.java │ │ │ ├── ChangedPathsCommand.java │ │ │ ├── CheckoutRulesRevWalk.java │ │ │ ├── Cleanup.java │ │ │ ├── CleanupRunner.java │ │ │ ├── CommitLoader.java │ │ │ ├── CommitLoaderImpl.java │ │ │ ├── CommonURIishImpl.java │ │ │ ├── ConfigCommand.java │ │ │ ├── EmptyVcsRootSshKeyManager.java │ │ │ ├── FetchCallbackProgress.java │ │ │ ├── FetchCommand.java │ │ │ ├── FetchCommandImpl.java │ │ │ ├── FetchContext.java │ │ │ ├── FetchProgressMonitor.java │ │ │ ├── FetchSettings.java │ │ │ ├── FetchSettingsFactory.java │ │ │ ├── FetchSettingsFactoryImpl.java │ │ │ ├── Fetcher.java │ │ │ ├── FetcherProperties.java │ │ │ ├── FsckCommandServer.java │ │ │ ├── GcErrors.java │ │ │ ├── GitAbstractVcsFileContentProvider.java │ │ │ ├── GitCollectChangesPolicy.java │ │ │ ├── GitCommand.java │ │ │ ├── GitCommitSupport.java │ │ │ ├── GitFetchService.java │ │ │ ├── GitFileContentDispatcher.java │ │ │ ├── GitGcProcess.java │ │ │ ├── GitHostedRepositoryManager.java │ │ │ ├── GitLabelingSupport.java │ │ │ ├── GitListFilesSupport.java │ │ │ ├── GitMapFullPath.java │ │ │ ├── GitMergeSupport.java │ │ │ ├── GitProgress.java │ │ │ ├── GitRepoOperations.java │ │ │ ├── GitRepositoryInitializingExtension.java │ │ │ ├── GitResetCacheHandler.java │ │ │ ├── GitServerExtension.java │ │ │ ├── GitServerUtil.java │ │ │ ├── GitTrustStoreProvider.java │ │ │ ├── GitTrustStoreProviderImpl.java │ │ │ ├── GitTrustStoreProviderStatic.java │ │ │ ├── GitUrlSupport.java │ │ │ ├── GitVcsFileContentProvider.java │ │ │ ├── GitVcsOperationProgress.java │ │ │ ├── GitVcsSupport.java │ │ │ ├── InitCommandServer.java │ │ │ ├── JGitProgressParser.java │ │ │ ├── JSchLoggers.java │ │ │ ├── LimitingRevWalk.java │ │ │ ├── ListFilesDispatcher.java │ │ │ ├── LocalCommitCommandServer.java │ │ │ ├── LogUtil.java │ │ │ ├── LsRemoteCommand.java │ │ │ ├── MetricReportingFetchCommand.java │ │ │ ├── ModificationDataRevWalk.java │ │ │ ├── OperationContext.java │ │ │ ├── PersonIdentFactory.java │ │ │ ├── PluginConfigImpl.java │ │ │ ├── ProcessXmxProvider.java │ │ │ ├── PushCommand.java │ │ │ ├── RefCommit.java │ │ │ ├── RemoteRepositoryUrlInvestigatorImpl.java │ │ │ ├── RepackCommandServer.java │ │ │ ├── RepositoryManager.java │ │ │ ├── RepositoryManagerImpl.java │ │ │ ├── RepositoryRevisionCache.java │ │ │ ├── ResetRevisionsCacheHandler.java │ │ │ ├── RevisionCacheType.java │ │ │ ├── RevisionsCache.java │ │ │ ├── SGitVcsRoot.java │ │ │ ├── SNIHttpClientConnectionFactory.java │ │ │ ├── SNISSLSocketFactory.java │ │ │ ├── SSLHttpClientConnection.java │ │ │ ├── SSLHttpClientConnectionFactory.java │ │ │ ├── SSLSchemePatcher.java │ │ │ ├── ServerPluginConfig.java │ │ │ ├── SshSessionMetaFactory.java │ │ │ ├── StatusCommandServer.java │ │ │ ├── TagCommand.java │ │ │ ├── TeamCityJDKHttpConnectionFactory.java │ │ │ ├── TestConnectionCommand.java │ │ │ ├── TransportFactory.java │ │ │ ├── TransportFactoryImpl.java │ │ │ ├── URIishHelperImpl.java │ │ │ ├── VcsAction.java │ │ │ ├── VcsAuthenticationException.java │ │ │ ├── VcsChangeTreeWalk.java │ │ │ ├── VcsHostingRepo.java │ │ │ ├── VcsOperation.java │ │ │ ├── VcsPropertiesProcessor.java │ │ │ ├── WellKnownHostingsUtil.java │ │ │ ├── WrongPassphraseException.java │ │ │ ├── command │ │ │ ├── ContextImpl.java │ │ │ ├── GitDetector.java │ │ │ ├── GitNativeOperationsStatus.java │ │ │ ├── NativeGitCommands.java │ │ │ └── impl │ │ │ │ └── GitRepoOperationsImpl.java │ │ │ ├── commitInfo │ │ │ ├── CachedDotGitModulesResolver.java │ │ │ ├── CommitTreeProcessor.java │ │ │ ├── DotGitModulesResolver.java │ │ │ ├── DotGitModulesResolverImpl.java │ │ │ ├── GitCommitsInfoBuilder.java │ │ │ ├── SubInfo.java │ │ │ └── SubmoduleResolver.java │ │ │ ├── gitProxy │ │ │ ├── ChangesCollectorCache.java │ │ │ └── GitProxyChangesCollector.java │ │ │ ├── github │ │ │ ├── GitHubListFilesSupport.java │ │ │ └── GitHubRawFileContentProvider.java │ │ │ ├── patch │ │ │ ├── BuildPatchLogger.java │ │ │ ├── BulkPatchBuilderImpl.java │ │ │ ├── ContentLoaderFactory.java │ │ │ ├── GitPatchBuilder.java │ │ │ ├── GitPatchBuilderDispatcher.java │ │ │ ├── GitPatchProcess.java │ │ │ ├── LoadContentAction.java │ │ │ └── PatchFileAction.java │ │ │ ├── process │ │ │ ├── GitProcessExecutor.java │ │ │ ├── GitProcessStuckMonitor.java │ │ │ └── RepositoryXmxStorage.java │ │ │ └── submodules │ │ │ ├── ByteRange.java │ │ │ ├── DirectSubmoduleAwareTreeIterator.java │ │ │ ├── IgnoreSubmoduleErrorsTreeFilter.java │ │ │ ├── IndirectSubmoduleAwareTreeIterator.java │ │ │ ├── MissingSubmoduleCommitException.java │ │ │ ├── MissingSubmoduleCommitInfo.java │ │ │ ├── MissingSubmoduleConfigException.java │ │ │ ├── MissingSubmoduleEntryException.java │ │ │ ├── Submodule.java │ │ │ ├── SubmoduleAwareTreeIteratorFactory.java │ │ │ ├── SubmoduleException.java │ │ │ ├── SubmoduleExceptionUtil.java │ │ │ ├── SubmoduleFetchException.java │ │ │ ├── SubmoduleResolver.java │ │ │ ├── SubmoduleResolverImpl.java │ │ │ ├── SubmoduleUrlResolver.java │ │ │ └── SubmodulesConfig.java │ └── org │ │ └── eclipse │ │ └── jgit │ │ ├── internal │ │ └── storage │ │ │ └── file │ │ │ └── MemoryMappedPackIndex.java │ │ └── treewalk │ │ └── SubmoduleAwareTreeIterator.java │ └── resources │ ├── META-INF │ └── build-server-plugin-git.xml │ └── buildServerResources │ ├── _fallbackTokenInfo.jspf │ ├── gitCustomizeBranches.jsp │ ├── gitSettings.jsp │ ├── gitStatusTab.jsp │ ├── health │ ├── gitAgentVersionReport.jsp │ ├── gitGcErrorsReport.jsp │ ├── gitLocalFileUrlReport.jsp │ ├── gitNotFoundReport.jsp │ ├── gitServerVersionReport.jsp │ └── switchToNativeGitReport.jsp │ ├── testConnectionError.jsp │ ├── testConnectionErrors.jsp │ └── vcsRootsContainer.jsp ├── git-tests ├── git-tests ├── git-tests-internal ├── lib │ ├── assertj-core-1.6.0.jar │ ├── cglib-nodep-2.1_3.jar │ ├── guava-30.1.1-jre.jar │ ├── hamcrest-core-1.1.jar │ ├── hamcrest-integration-1.1.jar │ ├── hamcrest-library-1.1.jar │ ├── jmock-2.5.1.jar │ ├── jmock-SNAPSHOT.jar │ ├── jmock-legacy-2.5.1.jar │ ├── junit-4.11.jar │ ├── mockito-all-1.10.19.jar │ ├── objenesis-1.0.jar │ └── testng-6.8.jar ├── pom.xml └── src │ └── test │ ├── java │ └── jetbrains │ │ └── buildServer │ │ └── buildTriggers │ │ └── vcs │ │ └── git │ │ └── tests │ │ ├── AgentConfigPluginTest.java │ │ ├── AgentMirrorCleanerTest.java │ │ ├── AgentSideSparseCheckoutTest.java │ │ ├── AgentSslCheckoutTest.java │ │ ├── AgentStartupGitDetectorTest.java │ │ ├── AgentSupportBuilder.java │ │ ├── AgentVcsSupportTest.java │ │ ├── AuthSettingsTest.java │ │ ├── AutoCheckoutTest.java │ │ ├── BaseRemoteRepositoryTest.java │ │ ├── BranchSupportTest.java │ │ ├── BulkPatchBuilderTest.java │ │ ├── CheckProxyPropertiesPatchBuilder.java │ │ ├── CheckoutDirectoryCleanerTest.java │ │ ├── CheckoutSources.java │ │ ├── CleanerTest.java │ │ ├── CollectChangesTest.java │ │ ├── CommandLineTest.java │ │ ├── CommandUtilTest.java │ │ ├── ContentProviderTest.java │ │ ├── CredentialsHelperTest.java │ │ ├── DiffWithUpperLimitRevisionTest.java │ │ ├── EchoArgumentEscapingTest.java │ │ ├── FetchCommandCountDecorator.java │ │ ├── FetchOptionsDataProvider.java │ │ ├── FetchSettingsFactoryImplTest.java │ │ ├── FetcherPropertiesTest.java │ │ ├── GitCommandProxy.java │ │ ├── GitCommandProxyCallback.java │ │ ├── GitCommitSupportTest.java │ │ ├── GitCommitsInfoBuilderTest.java │ │ ├── GitFacadeProxy.java │ │ ├── GitFactoryProxy.java │ │ ├── GitHttpServer.java │ │ ├── GitLabelingSupportTest.java │ │ ├── GitMergeSupportTest.java │ │ ├── GitPatchTest.java │ │ ├── GitPerformanceTests.java │ │ ├── GitRemoteUrlInspectorTest.java │ │ ├── GitRepositoryInitializingExtensionTest.java │ │ ├── GitResetCacheHandlerTest.java │ │ ├── GitServerUtilTest.java │ │ ├── GitSupportBuilder.java │ │ ├── GitTestUtil.java │ │ ├── GitUrlMapperTest.java │ │ ├── GitUrlSupportTest.java │ │ ├── GitUtilsTest.java │ │ ├── GitVcsRootTest.java │ │ ├── GitVcsSupportTest.java │ │ ├── GitVersionProvider.java │ │ ├── HttpAuthTest.java │ │ ├── HttpUrlWithUsernameTest.java │ │ ├── LatestAcceptedRevisionAndSubmodulesTest.java │ │ ├── LatestAcceptedRevisionTest.java │ │ ├── LimitedChangesCollectionTest.java │ │ ├── ListFilesTest.java │ │ ├── LoggingGitMetaFactory.java │ │ ├── MapFullPathTest.java │ │ ├── MirrorManagerTest.java │ │ ├── MockBuildAgent.java │ │ ├── MockDirectoryCleaner.java │ │ ├── MockFS.java │ │ ├── MockFetcher.java │ │ ├── MockGitPathResolver.java │ │ ├── MockGitPluginDescriptor.java │ │ ├── MockVcsModification.java │ │ ├── MockVcsRootSshKeyManagerProvider.java │ │ ├── NativeGitTestConnectionRunnerTest.java │ │ ├── PluginConfigBuilder.java │ │ ├── ProcessXmxProviderTest.java │ │ ├── PropertiesHelperTest.java │ │ ├── ProxyTests.java │ │ ├── RemoteRepositoryConfiguratorTest.java │ │ ├── RepositoryManagerTest.java │ │ ├── RepositoryXmxStorageTest.java │ │ ├── RequiredGitVersion.java │ │ ├── RetryTest.java │ │ ├── RevisionsCacheTest.java │ │ ├── SSLInvestigatorTest.java │ │ ├── SSLTestUtil.java │ │ ├── ScriptGenTest.java │ │ ├── ServerPluginConfigTest.java │ │ ├── SpaceExternalChangeViewerExtensionTest.java │ │ ├── SshAuthenticationTest.java │ │ ├── SubmoduleErrorsTest.java │ │ ├── SubmoduleTest.java │ │ ├── SubmoduleUrlResolverTest.java │ │ ├── TestConnectionTest.java │ │ ├── TransportFactoryTest.java │ │ ├── VcsPropertiesProcessorTest.java │ │ ├── VcsRootBuilder.java │ │ ├── WellKnownHostingsTest.java │ │ ├── builders │ │ ├── AgentRunningBuildBuilder.java │ │ └── BuildAgentConfigurationBuilder.java │ │ ├── command │ │ └── FetchCommandImplTest.java │ │ ├── gitProxy │ │ ├── ChangesCollectorCacheTest.java │ │ ├── GitProxyPerformanceTest.java │ │ └── GitProxyServiceTests.java │ │ ├── health │ │ └── GitLocalFileUrlHealthReportTest.java │ │ ├── ssh │ │ ├── JSchClientTest.java │ │ ├── SSHAgentServiceTest.java │ │ └── SSHCommandLineTest.java │ │ └── util │ │ ├── BaseGitPatchTestCase.java │ │ ├── BaseGitServerTestCase.java │ │ ├── BaseGitTestCase.java │ │ ├── BaseSimpleGitTestCase.java │ │ ├── InternalPropertiesHandler.java │ │ └── TestGitRepoOperationsImpl.java │ └── resources │ ├── auth-git-tests.xml │ ├── common-git-operations.xml │ ├── data │ ├── .gitattributes │ ├── README │ ├── TW-43643-1 │ │ ├── HEAD │ │ ├── config │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-db237b16151c8b851442bfb070f1977340439218.idx │ │ │ │ └── pack-db237b16151c8b851442bfb070f1977340439218.pack │ │ └── packed-refs │ ├── TW-43643-2 │ │ ├── HEAD │ │ ├── config │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-0bdaea6dadba52891ad12cd2a7bd7301f6ae4234.idx │ │ │ │ └── pack-0bdaea6dadba52891ad12cd2a7bd7301f6ae4234.pack │ │ └── packed-refs │ ├── TW-63901-1 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 30 │ │ │ │ └── 2ebff116c964124874e7758c2278e6f204e3c7 │ │ │ ├── 78 │ │ │ │ └── fcadbf51f44cf78fce816be5e3943e4bb5f95c │ │ │ └── 6d │ │ │ │ └── 7f637d9cc729e597892b3cc1089f0206196931 │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── TW-63901-2 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 30 │ │ │ │ └── 2ebff116c964124874e7758c2278e6f204e3c7 │ │ │ ├── 56 │ │ │ │ └── 5f5f32581cd1dba1305c5f5651270c33f40323 │ │ │ ├── 78 │ │ │ │ └── fcadbf51f44cf78fce816be5e3943e4bb5f95c │ │ │ ├── 6d │ │ │ │ └── 7f637d9cc729e597892b3cc1089f0206196931 │ │ │ └── bd │ │ │ │ └── f591a36ad98c14ed994284204635865451989a │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── TW-63901-submodule │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── 8a │ │ │ │ └── 0284d732f8086484fb40a33e64603034c86003 │ │ │ └── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── TW-64281-1 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 53 │ │ │ │ └── 819b7e0cdf98c12e7dee641f57f9a13c30a1f2 │ │ │ ├── 65 │ │ │ │ └── 0e7fb0b9c655c3e0468a8c01c446fdeba08823 │ │ │ ├── 0c │ │ │ │ └── fbf08886fca9a91cb753ec8734c84fcbe52c9f │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ ├── f3 │ │ │ │ └── d37d0d8db3d2f78fdf58294ec57965bcbdab02 │ │ │ └── f5 │ │ │ │ └── 0560fc97c83c82600d9d365261328f372c69b9 │ │ └── refs │ │ │ └── heads │ │ │ ├── br │ │ │ └── master │ ├── TW-64281-2 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 53 │ │ │ │ └── 819b7e0cdf98c12e7dee641f57f9a13c30a1f2 │ │ │ ├── 65 │ │ │ │ └── 0e7fb0b9c655c3e0468a8c01c446fdeba08823 │ │ │ ├── 73 │ │ │ │ └── 61e8beff17c08095a418615030065c9262123a │ │ │ ├── 00 │ │ │ │ └── 750edc07d6415dcc07ae0351e9397b0222b7ba │ │ │ ├── 0c │ │ │ │ └── fbf08886fca9a91cb753ec8734c84fcbe52c9f │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── 5c │ │ │ │ └── 8d6f434ab562ecac2d417e734ac2fc68a0b0f8 │ │ │ ├── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ ├── ed │ │ │ │ └── ad18e2ee4380197a7746355d5ad79ae4a71e2a │ │ │ ├── f3 │ │ │ │ └── d37d0d8db3d2f78fdf58294ec57965bcbdab02 │ │ │ └── f5 │ │ │ │ └── 0560fc97c83c82600d9d365261328f372c69b9 │ │ └── refs │ │ │ └── heads │ │ │ ├── br │ │ │ └── master │ ├── TW-64455-no_second_fetch_if_from_revision_missing_1 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 27 │ │ │ │ └── a2e7b1004f3a69fad996f7fd18a14f9a4c4eec │ │ │ ├── 57 │ │ │ │ └── 3541ac9702dd3969c9bc859d2b91ec1f7e6e56 │ │ │ ├── 65 │ │ │ │ └── f49c6f9c0970a893ec8e7645a35d8b7d1d7b36 │ │ │ ├── 3f │ │ │ │ └── e70d1959d56bf478a7ee01f2b5e57bf12e10df │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── 7a │ │ │ │ └── fe31b738eb97b69c9b0ca033548d5a3eabe597 │ │ │ ├── 7f │ │ │ │ └── 064210d56a9870cfe437c1cdc1d1aade3bb047 │ │ │ └── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ └── refs │ │ │ └── heads │ │ │ ├── b1 │ │ │ ├── b2 │ │ │ ├── b3 │ │ │ ├── b4 │ │ │ └── master │ ├── TW-64455-no_second_fetch_if_from_revision_missing_2 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 27 │ │ │ │ └── a2e7b1004f3a69fad996f7fd18a14f9a4c4eec │ │ │ ├── 53 │ │ │ │ └── 819b7e0cdf98c12e7dee641f57f9a13c30a1f2 │ │ │ ├── 57 │ │ │ │ └── 3541ac9702dd3969c9bc859d2b91ec1f7e6e56 │ │ │ ├── 65 │ │ │ │ └── f49c6f9c0970a893ec8e7645a35d8b7d1d7b36 │ │ │ ├── 68 │ │ │ │ └── 21229bee5b5cf5030e938caa1cb703a0edbc86 │ │ │ ├── 95 │ │ │ │ └── ff8476374914c77c658f876dd1548b93d88d58 │ │ │ ├── 0c │ │ │ │ └── fbf08886fca9a91cb753ec8734c84fcbe52c9f │ │ │ ├── 3f │ │ │ │ └── e70d1959d56bf478a7ee01f2b5e57bf12e10df │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── 7a │ │ │ │ └── fe31b738eb97b69c9b0ca033548d5a3eabe597 │ │ │ ├── 7f │ │ │ │ └── 064210d56a9870cfe437c1cdc1d1aade3bb047 │ │ │ ├── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ └── db │ │ │ │ └── 31739d5d13aef2785189fe4f79b823b5dc6ab6 │ │ └── refs │ │ │ └── heads │ │ │ ├── b1 │ │ │ ├── b2 │ │ │ ├── b3 │ │ │ ├── b4 │ │ │ └── master │ ├── TW-64455 │ │ └── deleted_commit_tmp │ │ │ └── f.txt │ ├── TW-65321 │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 47 │ │ │ │ └── 0642641930e19bc35a012f8da836c26c9e79f1 │ │ │ ├── 74 │ │ │ │ └── ccea8bd60b20b674edeb63c84f22484437c2a8 │ │ │ ├── 75 │ │ │ │ ├── 5301fe963030252cdd89f0d054852850b7ccb8 │ │ │ │ └── fbd02686508f1b8e053fd44e3ac158ba717dcf │ │ │ ├── 4b │ │ │ │ └── 6c9a11597d93c9fe93f98f658a7984e2ef55cf │ │ │ ├── 7a │ │ │ │ └── 3aba8eede9e4ff69f506d655b2949d58a5c228 │ │ │ ├── a1 │ │ │ │ └── eab097968152bab6baa33e8cb15898520aff21 │ │ │ ├── c3 │ │ │ │ └── 9b116d7aca94fd54a59d5b6a1671fbb47812b4 │ │ │ ├── d0 │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ ├── e2 │ │ │ │ └── 040a03e4029a45fc60e6d475a758c5ba264f5a │ │ │ ├── f6 │ │ │ │ └── 25d8a56000971b0ea22c4921ce201316f31be6 │ │ │ └── f8 │ │ │ │ └── aa358299cdb8721c46b43c66e1163b0aa44f02 │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── TW-65641-1.zip │ ├── TW-65641.zip │ ├── TW-97575-report-only-heads-as-changes │ │ ├── FETCH_HEAD │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 10 │ │ │ │ ├── a7b9ed97523452d831130412b838066ac329ac │ │ │ │ └── c282dcfd7f28e8af6d482ec53e7b813d7d2043 │ │ │ ├── 14 │ │ │ │ └── 990765f0db05052bb50b3b5fd1c9a8d2161a9d │ │ │ ├── 20 │ │ │ │ └── df1a8da686818117ed63ef0a218ee551f46d79 │ │ │ ├── 22 │ │ │ │ └── fa0c76e2d70b18e22ce57056bec636df68b821 │ │ │ ├── 24 │ │ │ │ └── 2b64b175b137377b160837daf5157f2f0482f8 │ │ │ ├── 31 │ │ │ │ └── e456222091fd02d33a610c044bad5ac714ccd6 │ │ │ ├── 32 │ │ │ │ ├── fd50603def016598ebf240730f4c1dc3139e18 │ │ │ │ └── ff3218cac5151c9de016669fcf1aa9cf331008 │ │ │ ├── 33 │ │ │ │ └── 7e1a119961e40c681aec210be050e5283cc9c2 │ │ │ ├── 41 │ │ │ │ └── f8799459e5c6745ef6f4db317102358636345f │ │ │ ├── 46 │ │ │ │ └── b404e8f3548d152479fb96cfb09c3dec1d0fe3 │ │ │ ├── 48 │ │ │ │ └── 99ed14c5cb039309a41b3420e276a797ff4617 │ │ │ ├── 50 │ │ │ │ └── a2174fcc3413af39e07f939000d2d6361d98ed │ │ │ ├── 60 │ │ │ │ └── 5b07eb57c6b54f7b3ccebe5edd8a1d775b54c6 │ │ │ ├── 62 │ │ │ │ └── 734c6c693c89fecda8b047d263f121a999f947 │ │ │ ├── 70 │ │ │ │ ├── 5173d93740982cd590ad905236caadcd375be6 │ │ │ │ └── dd3fa2367bf4d44c02ae3191edf2c1ab9c9296 │ │ │ ├── 76 │ │ │ │ └── 49ee37470e4a3317a6acfacfe7f4022abf659d │ │ │ ├── 79 │ │ │ │ └── 3ceb956574dfe566fc3022a17bf6e8ba789fd3 │ │ │ ├── 80 │ │ │ │ └── 515d8725506331714a0a8e89dbb8d8c65501be │ │ │ ├── 89 │ │ │ │ └── 38ca9ab50b1979cc67c181d6c69570f344c3ce │ │ │ ├── 98 │ │ │ │ └── d138a112bd47cee314e9b5f06ad8956f288215 │ │ │ ├── 02 │ │ │ │ └── 151a939e5d0a0cfdb652bfffa7be77cafbc48e │ │ │ ├── 09 │ │ │ │ └── 71ef2b9b55ffedb10c527ea781307fd218fadb │ │ │ ├── 0d │ │ │ │ └── bda778c5afddfcd892465c98fe7c84cdd81fcb │ │ │ ├── 0f │ │ │ │ └── 3aaf46a7930eee3702bf7941697e4630ecf410 │ │ │ ├── 1c │ │ │ │ └── b5bae3108e66b9377d9f70823ecf1d1e438ede │ │ │ ├── 3c │ │ │ │ └── 266ae4ec75e841f7819dacc76319770588179b │ │ │ ├── 4d │ │ │ │ └── 584f8cf36db68a74b3e4f8e76d57dd1c12e6a3 │ │ │ ├── 5e │ │ │ │ └── 4a9f49af3ebe77d42d5b92f7bf005496bbd8f3 │ │ │ ├── 5f │ │ │ │ └── c3c46f12932a0e264436bb378225b628638bf6 │ │ │ ├── 6a │ │ │ │ └── a844f4f3a8104e09c2299ea974584855282439 │ │ │ ├── 6f │ │ │ │ └── 7ed633575f9887fb3ee4830102f44f9ff8f1e1 │ │ │ ├── 7a │ │ │ │ └── b9e313d00f9a275b2517389e523cc229d96a5f │ │ │ ├── 7b │ │ │ │ └── 46dabb6165f9f0cb9f6a0128c7354ed8fb42f9 │ │ │ ├── 8b │ │ │ │ └── f97e2cbafa79ce97e85ea9abdf430610a7928b │ │ │ ├── 8c │ │ │ │ └── ed6aab64526fe41167ebb6c769c445522af014 │ │ │ ├── 9c │ │ │ │ └── b89f4ee86942d08d55d45ab41e48d76b0b5123 │ │ │ ├── 9d │ │ │ │ └── df9c91824de43ee0dd97e652db2f2251468936 │ │ │ ├── ae │ │ │ │ ├── 69582618328b94fa619727b37bfc33243cbfb1 │ │ │ │ └── aef487b9332562599c4a4a86def3f087fc194c │ │ │ ├── af │ │ │ │ └── 5547a3fb12d488404f6191b7a6807151845b35 │ │ │ ├── b1 │ │ │ │ └── 1c9491dc17d5783917d8525f96e517f17ba8f7 │ │ │ ├── bf │ │ │ │ └── 58b170d97d40fa12631a9653944cd1086f8cc4 │ │ │ ├── c6 │ │ │ │ └── 0323b3d63ac70d4bf55fdeeba1227bb6852ef2 │ │ │ ├── c7 │ │ │ │ └── 9014a118d1c48c49d50d4812e04e5f64dc071e │ │ │ ├── ca │ │ │ │ └── bfc994d478f25dbe407f2f8f18575dd589e29f │ │ │ ├── d1 │ │ │ │ └── 9281df3d7bc7a102856721fd8ea2687faf631a │ │ │ ├── d6 │ │ │ │ └── 296abd7612a0a42ada7d7c30c9fd7d85873ce3 │ │ │ ├── df │ │ │ │ └── 610548e3c8c36121bfadee95fac413838d51be │ │ │ ├── e3 │ │ │ │ └── 44f99e4155863c6a7b6aac1cdf09a6214f8014 │ │ │ ├── e8 │ │ │ │ └── 262c8645fb1e9d245f8c7fd067c76a2ea57ad2 │ │ │ ├── f8 │ │ │ │ └── c0c2df0a05fb138d7718ff404622a7a84abe88 │ │ │ └── f9 │ │ │ │ └── edf03c26dcbd87df1ea9fccd2d313feeb96df5 │ │ └── refs │ │ │ ├── heads │ │ │ ├── branch-1 │ │ │ └── main │ │ │ ├── namespace-1 │ │ │ ├── ignored-1 │ │ │ └── ignored-2 │ │ │ ├── rewritten-1 │ │ │ └── main │ │ │ └── shared-1 │ │ │ ├── shared-1 │ │ │ └── shared-2 │ ├── cleanPatch1 │ │ └── after │ │ │ └── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ └── file2.txt │ ├── content │ │ ├── dotgitmodules │ │ ├── readme.txt │ │ └── submodule file.txt │ ├── custom_config_example │ ├── excluded_broken_submodule │ │ └── after │ │ │ └── dir │ │ │ ├── b.txt │ │ │ ├── d.txt │ │ │ └── q.txt │ ├── fetch_multiple_refspecs │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 19 │ │ │ │ └── 0a18037c64c43e6b11489df4bf0b9eb6d2c9bf │ │ │ ├── a6 │ │ │ │ └── 6fa67db241d4a877866277b016318575cc8982 │ │ │ └── dd │ │ │ │ └── 5d0adaeace9c4ae3ee5fcd1ab692d65ec296d6 │ │ ├── packed-refs │ │ └── refs │ │ │ └── tags │ │ │ └── my_tag │ ├── keys │ │ ├── docker_key │ │ ├── docker_key.pub │ │ ├── id_ecdsa │ │ ├── id_ecdsa.pub │ │ ├── id_ecdsa_encrypted │ │ ├── id_ecdsa_encrypted.pub │ │ ├── id_rsa │ │ ├── id_rsa.pub │ │ ├── id_rsa_encrypted │ │ ├── id_rsa_encrypted.pub │ │ └── known_hosts │ ├── merge │ │ ├── HEAD │ │ ├── ORIG_HEAD │ │ ├── config │ │ ├── description │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ ├── master │ │ │ │ ├── topic │ │ │ │ └── topic2 │ │ ├── objects │ │ │ ├── 16 │ │ │ │ └── f18f3aa2c4979bd6efb8a38d5023cef3adfdfc │ │ │ ├── 32 │ │ │ │ └── c34d0b46dbb1c3db244166a0947ea95fd04d6b │ │ │ ├── 38 │ │ │ │ └── cc36e3ddcb33c72a22efec31df889001f79062 │ │ │ ├── 49 │ │ │ │ └── 7ad26749fd36bcd5a3ef982fb9fefa915c9d4b │ │ │ ├── 61 │ │ │ │ └── 780798228d17af2d34fce4cfbdf35556832472 │ │ │ ├── 68 │ │ │ │ └── b73163526a29a1f5a341f3b6fcd0d928748579 │ │ │ ├── 73 │ │ │ │ └── 603e158c007b3efaddb406e4840cf43430960e │ │ │ ├── 78 │ │ │ │ └── 981922613b2afb6025042ff6bd878ac1994e85 │ │ │ ├── 00 │ │ │ │ └── 03f1603abfe7fd784b95faa8ae4803598694a0 │ │ │ ├── 02 │ │ │ │ └── 173330af7d182a4a866fa23c7da1ba18aba718 │ │ │ ├── 08 │ │ │ │ └── 0f42bbf244b09d98569644cdf8609777f23d15 │ │ │ ├── 2d │ │ │ │ └── fa36551b6ba80d4183daa2984bc4136970b1f6 │ │ │ ├── 2f │ │ │ │ └── fada4169e6bd7961d107f607fcdcc0e6c7749d │ │ │ ├── 3a │ │ │ │ └── f22043460f69bbcbd41a008a9c3071f6a2bfc7 │ │ │ ├── 6f │ │ │ │ └── fbeea7e607c069bdfeea5ea10d7b139c06ecca │ │ │ ├── 7e │ │ │ │ └── 8a1653bf24c1c1d8e7c20b6bdea272df729b1f │ │ │ ├── 8d │ │ │ │ └── 9f45ee6a6dc886bb31ed9c0231e281a7e8fbc9 │ │ │ ├── a0 │ │ │ │ └── 63d2f62f2d524201cc3f2e12c91a26fa91fe27 │ │ │ ├── a2 │ │ │ │ └── 5479ce62384bf15b5fb20b351801995b127e90 │ │ │ ├── aa │ │ │ │ └── ff74984cccd156a469afa7d9ab10e4777beb24 │ │ │ ├── b2 │ │ │ │ └── 5ddcf5f44e91c2e725a5a341e2a9db16a3c01a │ │ │ ├── bc │ │ │ │ └── bb9d0b0a59b0f67da279dff3f0f9b425b5091b │ │ │ ├── c1 │ │ │ │ └── f89248e4b6e47a4529d50d37b0840a14d2efb0 │ │ │ ├── cc │ │ │ │ └── 69c22bd5d25779e58ad91008e685cbbe7f700a │ │ │ ├── ce │ │ │ │ └── e12cd2b836e519cfa84fcb081da9a0846386c4 │ │ │ ├── d2 │ │ │ │ └── e06a930fb98746f2208791e6cd5bb41e57ed3f │ │ │ ├── d5 │ │ │ │ └── bd1b76717b7284693ef23b547d972f6fc1d506 │ │ │ ├── d7 │ │ │ │ └── 3cf95b203b77a4f9ca969ac454e69eaebbf697 │ │ │ ├── e0 │ │ │ │ └── 3fccd6cda217cd0efabeca9a857ea949d64f8a │ │ │ ├── e3 │ │ │ │ └── c23121b97ca0e49aa938eda7fc11b8cb791214 │ │ │ ├── f7 │ │ │ │ ├── 27882267df4f8fe0bc58c18559591918aefc54 │ │ │ │ └── 7c43a1b3505016c9d07392084bed3d810b330e │ │ │ └── info │ │ │ │ └── packs │ │ └── refs │ │ │ └── heads │ │ │ ├── master │ │ │ ├── topic │ │ │ ├── topic2 │ │ │ └── topic3 │ ├── patch-case │ │ ├── after │ │ │ ├── FILE.L2U │ │ │ └── file.u2l │ │ └── before │ │ │ ├── FILE.U2L │ │ │ └── file.l2u │ ├── patch-eol │ │ └── after │ │ │ └── readme.txt │ ├── patch.non.default.branch │ │ └── after │ │ │ ├── dir │ │ │ ├── b.txt │ │ │ ├── d.txt │ │ │ └── q.txt │ │ │ └── readme.txt │ ├── patch1 │ │ ├── after │ │ │ └── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ └── before │ │ │ └── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ └── file2.txt │ ├── patch2 │ │ ├── after │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ └── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ └── before │ │ │ └── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ └── file2.txt │ ├── patch3 │ │ └── after │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── patch4 │ │ ├── after │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── patch5 │ │ ├── after │ │ │ └── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── patch6 │ │ ├── after │ │ │ ├── FILE.L2U │ │ │ └── file.u2l │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── patch7 │ │ ├── after │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ ├── file_in_branch.txt │ │ │ └── path │ │ │ │ ├── FILE.L2U │ │ │ │ └── file.u2l │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── patch8 │ │ └── after │ │ │ ├── FILE.L2U │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file.u2l │ ├── pullRequestPatch │ │ └── after │ │ │ ├── dir │ │ │ ├── b.txt │ │ │ ├── d.txt │ │ │ ├── not_ignored_by_checkout_rules.txt │ │ │ └── q.txt │ │ │ └── readme.txt │ ├── repo.git │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.noexec │ │ │ ├── applypatch-msg.sample │ │ │ ├── applypatch-msg.sample.noexec │ │ │ ├── commit-msg.noexec │ │ │ ├── commit-msg.sample │ │ │ ├── commit-msg.sample.noexec │ │ │ ├── post-commit.noexec │ │ │ ├── post-commit.sample │ │ │ ├── post-commit.sample.noexec │ │ │ ├── post-receive.noexec │ │ │ ├── post-receive.sample │ │ │ ├── post-receive.sample.noexec │ │ │ ├── post-update.noexec │ │ │ ├── post-update.sample │ │ │ ├── post-update.sample.noexec │ │ │ ├── pre-applypatch.noexec │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-applypatch.sample.noexec │ │ │ ├── pre-commit.noexec │ │ │ ├── pre-commit.sample │ │ │ ├── pre-commit.sample.noexec │ │ │ ├── pre-rebase.noexec │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-rebase.sample.noexec │ │ │ ├── prepare-commit-msg.noexec │ │ │ ├── prepare-commit-msg.sample │ │ │ ├── prepare-commit-msg.sample.noexec │ │ │ ├── update.noexec │ │ │ ├── update.sample │ │ │ └── update.sample.noexec │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── objects │ │ │ ├── 13 │ │ │ │ └── 91281d33a83a7205f2f05d3eb64c349c636e87 │ │ │ ├── 14 │ │ │ │ └── a721b466af5b9b60c81653d68b200903523f65 │ │ │ ├── 15 │ │ │ │ └── 12d05be2479d428c9ec962b21345c534f668e3 │ │ │ ├── 16 │ │ │ │ └── 636fae3d715338f4c45ef3c2962cfaae090411 │ │ │ ├── 17 │ │ │ │ └── 9e3a552b64015886396f9c7f1bfbbe875a3731 │ │ │ ├── 19 │ │ │ │ ├── 00742e818678a542ad8f2ca260a0eff0f32749 │ │ │ │ └── 0a18037c64c43e6b11489df4bf0b9eb6d2c9bf │ │ │ ├── 21 │ │ │ │ └── 91d9be4e434945928dcd4609e96a11659fc0bc │ │ │ ├── 22 │ │ │ │ └── a36c91aa435d5f530aea3f498668c84e4af22e │ │ │ ├── 23 │ │ │ │ ├── 3daeefb335b60c7b5700afde97f745d86cb40d │ │ │ │ └── a29ce39e2556c55552ff0e09cfe1f1cdf85bfa │ │ │ ├── 24 │ │ │ │ └── 94559261ab85e92b1780860b34f876b5e6bce6 │ │ │ ├── 27 │ │ │ │ └── de3d118ca320d3a8a08320ff05aa0567996590 │ │ │ ├── 34 │ │ │ │ └── ed481c76f0545073a7c0711c3867712b1a91eb │ │ │ ├── 36 │ │ │ │ └── 8a07d49239b90b0195cfc884ffce9f918888f4 │ │ │ ├── 39 │ │ │ │ └── 679cc440c83671fbf6ad8083d92517f9602300 │ │ │ ├── 44 │ │ │ │ ├── d3aba824faa74d9dfa058ec69f0368bc97b24c │ │ │ │ └── f5d50fbf5bd4b2640bd61c5157f4add83f5d0f │ │ │ ├── 46 │ │ │ │ └── 5ad9f630e451b9f2b782ffb09804c6a98c4bb9 │ │ │ ├── 49 │ │ │ │ └── 78741eeb8ca7c751a6cf8050d8a5f4a23be6d2 │ │ │ ├── 55 │ │ │ │ ├── 2d880546b62b38d1d68cc77ddccde5b32e79ea │ │ │ │ └── 4cb7eb5cdb4e5aac15f2ea7d2d2d188ad8cbfd │ │ │ ├── 57 │ │ │ │ └── 11cbfe566b6c92e331f95d4b236483f4532eed │ │ │ ├── 62 │ │ │ │ └── 6861a5c8063f15a31e81a348d8e5d45b8d359a │ │ │ ├── 70 │ │ │ │ └── f80fc4232606d2cfe5dc5af85d67bc9f38d371 │ │ │ ├── 71 │ │ │ │ ├── 8f4d2ff533cf8ead8d3556cf43912bd245fbc4 │ │ │ │ └── eb746d13bee55a3a6f27f35e1528f16088f447 │ │ │ ├── 72 │ │ │ │ └── 53d358a2490321a1808a1c20561b4027d69f77 │ │ │ ├── 77 │ │ │ │ ├── 7f79b3e89e63ac954fe0881470be3c72b8b0d4 │ │ │ │ └── 8cc3d0105ca1b6b2587804ebfe89c2557a7e46 │ │ │ ├── 78 │ │ │ │ ├── 251d6334c7c895bf6584a33be51a50b2043cee │ │ │ │ ├── 4ffe1495717faa98604dd916a373607b9f012a │ │ │ │ ├── 981922613b2afb6025042ff6bd878ac1994e85 │ │ │ │ └── cbbed3561de3417467ee819b1795ba14c03dfb │ │ │ ├── 79 │ │ │ │ └── 99c0d45b2316420b1d7c7fcb81e733dbe32b22 │ │ │ ├── 87 │ │ │ │ └── 471a8f95e7254aed828009d0a7f6c64f75317c │ │ │ ├── 92 │ │ │ │ └── 112555d9eb3e433eaa91fe32ec001ae8fe3c52 │ │ │ ├── 93 │ │ │ │ └── 95143dd6c3e73abf9281be7a772c4d286e72a5 │ │ │ ├── 94 │ │ │ │ ├── 7fad219aebb70af1e4a2c50ff5243df11d1967 │ │ │ │ └── bfe2c7c58ad8b04139dafcf830bccafbee2954 │ │ │ ├── 95 │ │ │ │ └── 6fce955afe0d6b4fa78ad571c6046836b87390 │ │ │ ├── 03 │ │ │ │ └── 9e7395725ad8d2a143fd44645a3fb72b001217 │ │ │ ├── 05 │ │ │ │ ├── 8ad5872851a5e8c6b8a665d4e058b21fed27df │ │ │ │ └── a7807d505293eed7d4a168ae01d49a54c6141f │ │ │ ├── 06 │ │ │ │ └── 8a067dee4c72278d647a35e882dc718832ec05 │ │ │ ├── 0a │ │ │ │ └── f9903a9ccc46e21a1e4ed4eb44e4b5819382d4 │ │ │ ├── 0b │ │ │ │ ├── 41e09399697807849a2d716d6e356e5f741839 │ │ │ │ └── d5659cea63ff6cda0fa68fecf79bf1dc0ebcbc │ │ │ ├── 0e │ │ │ │ ├── 69d3aa1d0c205c213ca60cdbce8f0cd2dbad51 │ │ │ │ └── c1496b1bef24617dfb3ebe6fcc92d45fa8aeca │ │ │ ├── 1a │ │ │ │ ├── 2fcf0b074d03aacfeacc6a8f0f88f245049e94 │ │ │ │ └── 3f0c4ca281660ca497406adc28f07ac1d630e9 │ │ │ ├── 1e │ │ │ │ └── 6f948d8e036697816d93c1436cea35cb65e0f7 │ │ │ ├── 1f │ │ │ │ └── efad14fba39ac378e4e345e295fa1f90e343ae │ │ │ ├── 2c │ │ │ │ └── 7e90053e0f7a5dd25ea2a16ef8909ba71826f6 │ │ │ ├── 2d │ │ │ │ └── 5827b83521869e5b82f48782d3c9011238ca3b │ │ │ ├── 2e │ │ │ │ └── 86577646d1a23bb1e7e6344a148d7c747cc1d7 │ │ │ ├── 3b │ │ │ │ ├── 9e511fe261ff84acbc38cb348dd51935c3770c │ │ │ │ └── 9fbfbb43e7edfad018b482e15e7f93cca4e69f │ │ │ ├── 3d │ │ │ │ └── f61e6f11a5a9b919cb3f786a83fdd09f058617 │ │ │ ├── 3e │ │ │ │ └── 8ef2c44bac36d35ac6fc765dad889f171d349b │ │ │ ├── 3f │ │ │ │ └── cc0c25df795c926a2e87270b6d1af75cf61e49 │ │ │ ├── 4a │ │ │ │ └── 57423a3630e1e1521511ab95b2de9eab0dc54e │ │ │ ├── 4b │ │ │ │ └── e4cc77ac427ecabf6ca53a76e33f6e186db6f2 │ │ │ ├── 4d │ │ │ │ └── b44e40262299d5c67911fc6ce898dcaed3266c │ │ │ ├── 4f │ │ │ │ └── c54ab38aa50da0f0ee7088453768836a5e78a4 │ │ │ ├── 5a │ │ │ │ └── 12045a70ab5621aa1819e67a330e602213eb0b │ │ │ ├── 5b │ │ │ │ └── 67b08601c12735dbb02ca3c551ff040871f495 │ │ │ ├── 6c │ │ │ │ └── f3cb6a87091d17466607858c699c35edf30d3b │ │ │ ├── 6e │ │ │ │ └── ae9acd29db2dba146929634a4bb1e6e72a31fd │ │ │ ├── 6f │ │ │ │ └── 4e9aa996217fc9353783a746ebe25f6c88c930 │ │ │ ├── 7c │ │ │ │ └── b38e3b535534e689db8851ba664aa88bafee86 │ │ │ ├── 7f │ │ │ │ └── 9bdda53c81ba470483dcd59be1f08f1ada1d34 │ │ │ ├── 8f │ │ │ │ └── 018e5e8427f6fc5afc4bf89a66c2d2bd21b955 │ │ │ ├── 9c │ │ │ │ └── ae9cd1e9ada0df6893c937bfc41c35df548b64 │ │ │ ├── 9d │ │ │ │ ├── 6ff49e1d679eac39b7502d7fc4297cdfa661aa │ │ │ │ ├── aeafb9864cf43055ae93beb0afd6c7d144bfa4 │ │ │ │ └── d7ac90b565b3f0fcd68139afe00c22b8105103 │ │ │ ├── a0 │ │ │ │ └── b44c815bcedbe50b6528d277d9ee3ac037132a │ │ │ ├── a4 │ │ │ │ └── 459eb2a8ae121e93e2b38dafa01e8fd76b9265 │ │ │ ├── a5 │ │ │ │ └── 8128afa117d3ee51a4464015bd0053657e99ea │ │ │ ├── a8 │ │ │ │ └── d082c203ee17a8dbc1a97427637446064c047d │ │ │ ├── a9 │ │ │ │ └── 906503d14f2fd8599796b4dcdb5993c82dfb87 │ │ │ ├── ab │ │ │ │ └── 8ac5c5bf9694d3102b25e0be4fdb2a8beeffe9 │ │ │ ├── ad │ │ │ │ └── 255604ca8157ccafcb4e1787af0b20e812cb1c │ │ │ ├── b0 │ │ │ │ └── 799af24940ea316efd2985b5c5c10b47875abd │ │ │ ├── b1 │ │ │ │ └── 36ac344df63d2b85952e01c127976e04023d0d │ │ │ ├── b2 │ │ │ │ └── f7c8778670efb0c23ac9235b9d34cfd0da22c1 │ │ │ ├── b8 │ │ │ │ ├── 96070465af79121c9a4eb5300ecff29453c164 │ │ │ │ ├── c02c89d8d478af143c2bf41334e6229cbf7d5c │ │ │ │ └── e253bef7b5f6cae231a1acc7c3073a3e1945eb │ │ │ ├── b9 │ │ │ │ └── 6aa6a603a178bcf34ac0aff54c004104381f41 │ │ │ ├── bb │ │ │ │ └── 8d1c2ce2924d1094ae6ee3a47a96fee54af36a │ │ │ ├── be │ │ │ │ └── d3f65d10f1eee8d4f0f76517eeb1a771959799 │ │ │ ├── bf │ │ │ │ └── 8aa0689f027dacc0c9ce18ec3203b020ff27f8 │ │ │ ├── c0 │ │ │ │ └── 9a33dc4f5ed5ba0d4bae7d8ba257dcf0d5af8c │ │ │ ├── c3 │ │ │ │ └── ff2b10692ba96c6c351a25faff3103f927c393 │ │ │ ├── ca │ │ │ │ └── ff6b7d44973f53e3e0cf31d0d695188b19aec6 │ │ │ ├── cd │ │ │ │ └── f687a75027bbc672f4def86e2dc8bc738e0260 │ │ │ ├── ce │ │ │ │ └── 6044093939bb47283439d97a1c80f759669ff5 │ │ │ ├── d2 │ │ │ │ └── 1fe3885411b75d4c28b2f0546247283258bf50 │ │ │ ├── d3 │ │ │ │ └── c161f44fa4531de81db21782816b506b163d4e │ │ │ ├── da │ │ │ │ └── 8d29da8db3bfd1c3c8e2cfd463c800e6a630a8 │ │ │ ├── dd │ │ │ │ ├── e0af5012168ae084e02c383055a6579721c99b │ │ │ │ └── fa1109ab668ce10f6614d863c41719439ea861 │ │ │ ├── de │ │ │ │ └── 5ec1edeac329136be13a94d2f661886c965b0c │ │ │ ├── e5 │ │ │ │ └── 3f8c43d454281ae5758c01a1f30cb6a3413908 │ │ │ ├── e6 │ │ │ │ ├── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ └── b15b1f4741199857e2fa744eaadfe5a9d9aede │ │ │ ├── e7 │ │ │ │ ├── 89c1c0200930d91554d448139ba92e9eb751b6 │ │ │ │ └── f491963fbc5c96a27e4169b97746a5a7f83870 │ │ │ ├── e9 │ │ │ │ └── c9ada4c68160d3feb294f56c965fcfd7e048f2 │ │ │ ├── ea │ │ │ │ └── 5e05051fbfaa7d8da97586807b009cbfebae9d │ │ │ ├── eb │ │ │ │ └── 3253bf965225b34ab01942db4da714cb123a00 │ │ │ ├── ee │ │ │ │ └── 0e13d6d86938ad367c461df9ddb17892f47f64 │ │ │ ├── f1 │ │ │ │ └── 5c390e5def627a14e1cebe709239788ef949dd │ │ │ ├── f4 │ │ │ │ └── 814408734ad2d4c8a4466b3a3c065f7bcd41e7 │ │ │ ├── f5 │ │ │ │ └── bdd3819df0358a43d9a8f94eaf96bb306e19fe │ │ │ ├── f6 │ │ │ │ ├── 18f42b6e1a076217475224abab174c4f4f7ac3 │ │ │ │ ├── 1e30ce576e76bff877ddf1d00acf22c5c1b07a │ │ │ │ └── d3bae590280c326491c3283874b1a66e654f65 │ │ │ ├── f7 │ │ │ │ └── 498a98d034883b401ab2d9fb82cb8622c79a70 │ │ │ ├── f8 │ │ │ │ └── 7d721021082582cc5f3c4599d0d890aed8ebd6 │ │ │ ├── fb │ │ │ │ └── b9fc3d351d4ae1777ab315f03423b615560989 │ │ │ ├── fc │ │ │ │ └── dc6c5f52c57ce68413027ee7d46de8781f7f98 │ │ │ ├── fd │ │ │ │ └── 704a963d073ae4a2284eb03699433e48792747 │ │ │ ├── fe │ │ │ │ └── ac610f381e697acf4c1c8ad82b7d76c7643b04 │ │ │ ├── ff │ │ │ │ └── 4c46f5fe2fcd097907ff2f87bce035882893a9 │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-34c5b0976fef7a69bb031b300a62e22f29f5af1e.idx │ │ │ │ ├── pack-34c5b0976fef7a69bb031b300a62e22f29f5af1e.pack │ │ │ │ ├── pack-7ebe8c6d6f49cffb648162fb0a5f5f111deb93f5.idx │ │ │ │ └── pack-7ebe8c6d6f49cffb648162fb0a5f5f111deb93f5.pack │ │ ├── packed-refs │ │ └── refs │ │ │ ├── heads │ │ │ ├── TW-65043 │ │ │ ├── TW-66105 │ │ │ ├── TW-71691 │ │ │ ├── TW-71924 │ │ │ ├── TW-71933 │ │ │ ├── TW-72198 │ │ │ ├── TW-96384 │ │ │ └── wrong-submodule │ │ │ └── tags │ │ │ └── v0.5 │ ├── repo_for_checkout_rules │ │ ├── COMMIT_EDITMSG │ │ ├── HEAD │ │ ├── ORIG_HEAD │ │ ├── config │ │ ├── description │ │ ├── index │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ ├── br1 │ │ │ │ ├── br2 │ │ │ │ ├── br4 │ │ │ │ ├── br5 │ │ │ │ ├── br6 │ │ │ │ ├── br7 │ │ │ │ ├── br7_sub │ │ │ │ ├── br8 │ │ │ │ ├── br9 │ │ │ │ ├── master │ │ │ │ ├── mp1 │ │ │ │ └── mp2 │ │ ├── objects │ │ │ ├── 10 │ │ │ │ └── 6fbecad2f1b12bdee52612278592f4f58acc1e │ │ │ ├── 12 │ │ │ │ └── b52d6d2e610f8f14f8cc9e04c5266b4cdfa0d1 │ │ │ ├── 15 │ │ │ │ └── 54d8c7db81c7e784c4b88f1eb94f992b93b036 │ │ │ ├── 23 │ │ │ │ └── 0143e85c0357ac11acfa21d8729393a7d817e2 │ │ │ ├── 27 │ │ │ │ └── 6ca10a6186cbef77fd3d8d1ecc1df629ee308b │ │ │ ├── 36 │ │ │ │ └── 301a4c90791783cd1fc0a76f283f98c1af7caf │ │ │ ├── 48 │ │ │ │ └── 5502d721a19ba80a6f43253551d06227db3778 │ │ │ ├── 49 │ │ │ │ └── da3a5e5ce2add4a81c8347f979fb854406c890 │ │ │ ├── 72 │ │ │ │ └── 943a16fb2c8f38f9dde202b7a70ccc19c52f34 │ │ │ ├── 08 │ │ │ │ └── 83796bda04c03d0edb746aeff577b83a1984b0 │ │ │ ├── 0b │ │ │ │ └── dc4234d2f3da507f93b4d46f098b77dc28da99 │ │ │ ├── 1f │ │ │ │ └── 95718ae45d8688fa2a6afc8be109836efb85d3 │ │ │ ├── 3a │ │ │ │ └── 49bcd656a27e94f43d55d5b28eeabd190b6961 │ │ │ ├── 6b │ │ │ │ └── de1bfe742da5cf9dbb6de8fa9d1d79eb7a8e35 │ │ │ ├── a3 │ │ │ │ └── a81ed0233c9b7a85de43fac8022a3375278b8e │ │ │ ├── a4 │ │ │ │ └── c4628bbcfce1b14f2a5cf13dab2424eb2bebdc │ │ │ ├── b2 │ │ │ │ └── cc4505fcc8e7ac983ed0a273902abd2720dcbb │ │ │ ├── b3 │ │ │ │ └── f55d75019587d33fcf56b8fa2f38c0a32b21c3 │ │ │ ├── c4 │ │ │ │ └── 52bf205c52b17ab9d42178df5063b411de8416 │ │ │ ├── cd │ │ │ │ └── 4e69df925a4dad887e14d8cfb8243f03a392b2 │ │ │ ├── d2 │ │ │ │ └── dbf864eff7cba523914f9cac85c48130604ca0 │ │ │ ├── d3 │ │ │ │ └── 40ec3ddcef9b907ede02f64b5d3f694da5d081 │ │ │ ├── d9 │ │ │ │ └── 03be42428932ccc94a08ee2161a40e52448c47 │ │ │ ├── e0 │ │ │ │ └── b16faaa05fffe9418adb93477711759a51ab81 │ │ │ ├── e3 │ │ │ │ └── 0c7c8401f2d287126c2cc156ba511ccfed4e10 │ │ │ ├── f7 │ │ │ │ └── a3bf64d3522fae44359fe2f4d24326475b3d8e │ │ │ ├── info │ │ │ │ ├── commit-graph │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-d93c6a304dacf673af04f4608052ffdb5a27863b.idx │ │ │ │ └── pack-d93c6a304dacf673af04f4608052ffdb5a27863b.pack │ │ ├── packed-refs │ │ └── refs │ │ │ └── heads │ │ │ ├── br9 │ │ │ └── master │ ├── repo_for_checkout_rules_module1 │ │ ├── COMMIT_EDITMSG │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── fsmonitor-watchman.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-merge-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-receive.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ ├── push-to-checkout.sample │ │ │ └── update.sample │ │ ├── index │ │ ├── info │ │ │ └── exclude │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── objects │ │ │ ├── 41 │ │ │ │ └── 800ac9e7c4c321b927667e5c389a00af01b4e4 │ │ │ ├── 68 │ │ │ │ └── 5d1c48bc37fbc3ddc943fcb8b32cb60a4a52b9 │ │ │ ├── 81 │ │ │ │ └── 6a18512d225c1a9126ecf629f86292f6c59dbf │ │ │ ├── 2a │ │ │ │ └── 93ae9b4f2a150cd4754991557a93303df0edd7 │ │ │ ├── 3e │ │ │ │ └── c6d6056d08a84932b88bf17770c39cabbd2b79 │ │ │ ├── 4e │ │ │ │ └── 39cf11f8ee0ca2bf081a594ea9746dd585d8b8 │ │ │ ├── 5b │ │ │ │ └── 5c683f28ed0c613dc94a2e6878f16fbb4e8548 │ │ │ ├── 9b │ │ │ │ └── efe485be5803c05933379800ece5eb811593b9 │ │ │ ├── c3 │ │ │ │ └── c2b20b2883bf94a95fb2a5693d10287a09c772 │ │ │ ├── d6 │ │ │ │ └── ac35912fe3c0b567d53955836a5fc8b4af75a2 │ │ │ ├── e5 │ │ │ │ └── ebbac6e7e654b4284271226a847780ac42b712 │ │ │ ├── e6 │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ └── f8 │ │ │ │ └── 8272cf51de26c50d4e1e23f2152849bdc015bf │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── repo_for_checkout_rules_module2 │ │ ├── COMMIT_EDITMSG │ │ ├── FETCH_HEAD │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── fsmonitor-watchman.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-merge-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-receive.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ ├── push-to-checkout.sample │ │ │ └── update.sample │ │ ├── index │ │ ├── info │ │ │ └── exclude │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── objects │ │ │ ├── 13 │ │ │ │ └── e4bd374d07b35230d457390941a28885893582 │ │ │ ├── 19 │ │ │ │ └── 0f5153ff70549244277ccdb82fcf9a70dedbd5 │ │ │ ├── 21 │ │ │ │ └── 67a59265cd39f9a04c23b6f6cc8b54bb090cbe │ │ │ ├── 39 │ │ │ │ └── 78f6a947cf92037d61670014bf002feb0c4a23 │ │ │ ├── 54 │ │ │ │ └── 3b9bebdc6bd5c4b22136034a95dd097a57d3dd │ │ │ ├── 63 │ │ │ │ └── 92d1d7ba58dd59d0501f52ea8fa2450a18d503 │ │ │ ├── 91 │ │ │ │ └── 18d6c90d0d80f906e70baf6af04a50ff660d7b │ │ │ ├── 98 │ │ │ │ └── 5c6149804821072c79bf0d8090bff9090331f7 │ │ │ ├── 2f │ │ │ │ └── 2eb8bad9e043b35b73d714cc1256d3aaede3cb │ │ │ ├── a3 │ │ │ │ └── 737010bbafbc1c4ca4a54f13bffd12c09b047a │ │ │ ├── b2 │ │ │ │ └── bb5a644977c46aeacd9a8f3b88047e38125410 │ │ │ ├── bc │ │ │ │ ├── 79b4b76aaa6cdb68c7cbf4effc214b5955e5e1 │ │ │ │ └── f06931988563da87bbd8faa0283fc6732667c0 │ │ │ ├── c3 │ │ │ │ └── c2b20b2883bf94a95fb2a5693d10287a09c772 │ │ │ ├── c7 │ │ │ │ └── f273cd48674b8f60c6ff3b1e817b3368f605c9 │ │ │ ├── e6 │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ └── f1 │ │ │ │ └── a6b3d10cac5611379d3902caf6889b48c33d73 │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── repo_for_checkout_rules_with_submodules │ │ ├── COMMIT_EDITMSG │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── fsmonitor-watchman.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-merge-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-receive.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ ├── push-to-checkout.sample │ │ │ └── update.sample │ │ ├── index │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── 19 │ │ │ │ └── 512b976ca1d0ab224143f478f6fb5048d4aed6 │ │ │ ├── 27 │ │ │ │ └── 4712cc6b49696e51bb84ed4e0445ecc1aa588c │ │ │ ├── 43 │ │ │ │ └── 12ebe209644d37778c2b3f814f40c6dec6946c │ │ │ ├── 54 │ │ │ │ └── 3b9bebdc6bd5c4b22136034a95dd097a57d3dd │ │ │ ├── 57 │ │ │ │ └── f0352c60269c14f02f2863c7a35cf8573aead0 │ │ │ ├── 64 │ │ │ │ └── 28eba7bf9f4227a7dc898cdd74d2d241c5ce7d │ │ │ ├── 73 │ │ │ │ └── f3b14675e9295f8923c31a47b1b3d4b6bdc7c6 │ │ │ ├── 81 │ │ │ │ └── 6a18512d225c1a9126ecf629f86292f6c59dbf │ │ │ ├── 93 │ │ │ │ ├── 218fd505c5c2f71f5c44e5a5b9e73dbe43836d │ │ │ │ └── 427e5a840c3976af22cde00bdacb567e20e67a │ │ │ ├── 02 │ │ │ │ └── a41094cf4993c43230c8738acdf29e91cbb0d6 │ │ │ ├── 0b │ │ │ │ └── 64d65bb36faa01ffd5a97acd8aaaa74ab2b23b │ │ │ ├── 0c │ │ │ │ └── c4726cc3f1a3db11f8c8a47acb69d3515d402a │ │ │ ├── 1f │ │ │ │ └── c69f3b141acb7031497d3db214eed3c5131a57 │ │ │ ├── 4e │ │ │ │ ├── 39cf11f8ee0ca2bf081a594ea9746dd585d8b8 │ │ │ │ └── cc4f42602de72476ebe0bc3bc58fac65960179 │ │ │ ├── 8d │ │ │ │ └── 0212525f31b543ff5cf22c4a18a15a123d3262 │ │ │ ├── a4 │ │ │ │ └── a91b4c8211cab6dbe094427ef32266810e3c64 │ │ │ ├── af │ │ │ │ └── 8389af87d5af3802bd71e9d4a7df963c68ace8 │ │ │ ├── c2 │ │ │ │ └── c8d7dc007f1a4a7cad2134f5e42beca0733800 │ │ │ ├── c3 │ │ │ │ └── c2b20b2883bf94a95fb2a5693d10287a09c772 │ │ │ ├── d1 │ │ │ │ └── ff728043f50d7deaa524b978ed94df8d7adc34 │ │ │ ├── d7 │ │ │ │ └── ea7f829cd1c230d740de548817543737c157d4 │ │ │ ├── dc │ │ │ │ └── 65ba0f3053d2248013e6dd0be3a61d57de44af │ │ │ ├── df │ │ │ │ └── 8dad0577cf8dce2b9393b30c27a81c76e881f6 │ │ │ ├── e6 │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ ├── ed │ │ │ │ └── 1a79fc9cfd8ab7925cce70b3a74e002b299668 │ │ │ ├── f4 │ │ │ │ └── 076e07a5d587408baaaf49e57573c346acfa65 │ │ │ ├── f7 │ │ │ │ └── 024b25f0e3727c253b932ef04444a5e8dba9e5 │ │ │ └── fa │ │ │ │ └── 9e72b6bcecc20c1e236f28819b3c4225f722a2 │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── repo_for_fetch.1 │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-8626621bf6b50e0c2cf436c8d01853ffa781498b.idx │ │ │ │ └── pack-8626621bf6b50e0c2cf436c8d01853ffa781498b.pack │ │ └── packed-refs │ ├── repo_for_fetch.2.personal │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-3c71b5638065a33b8ce167a660de314b15f4617d.idx │ │ │ │ └── pack-3c71b5638065a33b8ce167a660de314b15f4617d.pack │ │ └── packed-refs │ ├── repo_for_fetch.2 │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-3c71b5638065a33b8ce167a660de314b15f4617d.idx │ │ │ │ └── pack-3c71b5638065a33b8ce167a660de314b15f4617d.pack │ │ └── packed-refs │ ├── repo_for_fetch.3 │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-1874fb0f28b5cb371cea7cb26e8c123e419241bc.idx │ │ │ │ └── pack-1874fb0f28b5cb371cea7cb26e8c123e419241bc.pack │ │ └── packed-refs │ ├── repo_for_shallow_fetch.git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 19 │ │ │ │ └── 0a18037c64c43e6b11489df4bf0b9eb6d2c9bf │ │ │ ├── 51 │ │ │ │ └── b4008129ffee9f3298ba2e0ebd1071211109fd │ │ │ ├── 64 │ │ │ │ └── 195c330d99c467a142f682bc23d4de3a68551d │ │ │ ├── 03 │ │ │ │ └── 66c6d5ad79c36664df8eb727caf65a2cca3582 │ │ │ ├── 2a │ │ │ │ └── 2674252e5128b329d3121f2c08f226ac0cb64c │ │ │ ├── 7b │ │ │ │ └── 5813c6a7ebef887d9dc34812413e64603bc838 │ │ │ ├── a1 │ │ │ │ └── d6299597f8d6f6d8316577c46cc8fffd657d5e │ │ │ ├── a6 │ │ │ │ └── 6fa67db241d4a877866277b016318575cc8982 │ │ │ └── fd │ │ │ │ └── 1eb9776b5fad5cc433586f7933811c6853917d │ │ └── refs │ │ │ ├── heads │ │ │ └── main │ │ │ └── tags │ │ │ ├── tag1 │ │ │ └── tag2 │ ├── repo_with_tags │ │ ├── COMMIT_EDITMSG │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── fsmonitor-watchman.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-receive.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ └── update.sample │ │ ├── index │ │ ├── info │ │ │ ├── exclude │ │ │ └── refs │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── objects │ │ │ ├── 74 │ │ │ │ └── 577c15655ab221af62663d8977a2d083aca952 │ │ │ ├── 09 │ │ │ │ └── d463727f57adec24055a315f05ff6364cf7169 │ │ │ ├── 2c │ │ │ │ └── fef641d05acf04ad75b22d44947601cf5ccac4 │ │ │ ├── 3f │ │ │ │ └── 6a148c1315d27a84d1a3a8fdfb151530c74a71 │ │ │ ├── 5c │ │ │ │ └── 9dd29cf54101d1d469535a2dee4e48101917cc │ │ │ ├── 5d │ │ │ │ └── da674951afbd7b4c06f6b84f9b0fd1d422e438 │ │ │ ├── 9d │ │ │ │ └── eb49b1c95e9eae1f783f249d9fa26547eac7ad │ │ │ ├── c0 │ │ │ │ └── 69df1896cc63f0b1ad747434385558a8049307 │ │ │ ├── f0 │ │ │ │ └── 3f6945fbf941fa91cb460eab583c7f36c8cee3 │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-e77cba9796890aa070ed779d8dcee6b822d42f89.idx │ │ │ │ └── pack-e77cba9796890aa070ed779d8dcee6b822d42f89.pack │ │ └── refs │ │ │ ├── heads │ │ │ └── master │ │ │ └── tags │ │ │ ├── release-1.0 │ │ │ ├── release-2.0 │ │ │ ├── release-3.0 │ │ │ ├── tag1 │ │ │ ├── tag2 │ │ │ ├── tag3 │ │ │ └── tag4 │ ├── repo_without_master.git │ │ ├── HEAD │ │ ├── objects │ │ │ ├── 19 │ │ │ │ └── 0a18037c64c43e6b11489df4bf0b9eb6d2c9bf │ │ │ ├── 3c │ │ │ │ └── 13027cadf7085c456bfb5519d1bb446fb5e802 │ │ │ └── a6 │ │ │ │ └── 6fa67db241d4a877866277b016318575cc8982 │ │ ├── packed-refs │ │ └── refs │ │ │ └── heads │ │ │ └── default │ ├── sub-submodule.git │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── post-commit.sample │ │ │ ├── post-receive.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ └── update.sample │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── 30 │ │ │ │ └── c9907fceb1a3f6cacd05489375d4b408a77321 │ │ │ ├── 51 │ │ │ │ └── 2e15ea04aa15bf07dd0e18118ed63a32d132cc │ │ │ ├── 73 │ │ │ │ └── 53259ac460eb6e5a6df24e7f37f442386127f2 │ │ │ ├── 2f │ │ │ │ └── fafea06c7a385a78092dbc5e8a5a6225574397 │ │ │ ├── ad │ │ │ │ └── b5f15e922df9eee157dcec2ff103f0b4a74327 │ │ │ └── b2 │ │ │ │ └── adbe627633ff764e90c7ea309114e1bf222362 │ │ └── packed-refs │ ├── submodule-added-ignore │ │ ├── after │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── submodule-added │ │ ├── after │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ ├── file_in_branch.txt │ │ │ └── submodule │ │ │ │ └── file.txt │ │ └── before │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── submodule-modified-ignore │ │ ├── after │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ │ └── before │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── submodule-modified │ │ ├── after │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ ├── file_in_branch.txt │ │ │ └── submodule │ │ │ │ ├── file.txt │ │ │ │ └── new file.txt │ │ └── before │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ ├── file_in_branch.txt │ │ │ └── submodule │ │ │ └── file.txt │ ├── submodule-removed-ignore │ │ ├── after │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ │ └── before │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ ├── submodule-removed │ │ ├── after │ │ │ ├── dir with space │ │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ │ ├── file1.txt │ │ │ │ ├── file3.txt │ │ │ │ └── subdir │ │ │ │ │ └── file2.txt │ │ │ └── file_in_branch.txt │ │ └── before │ │ │ ├── .gitmodules │ │ │ ├── dir with space │ │ │ └── file with space.txt │ │ │ ├── dir1 │ │ │ ├── file1.txt │ │ │ ├── file3.txt │ │ │ └── subdir │ │ │ │ └── file2.txt │ │ │ ├── file_in_branch.txt │ │ │ └── submodule │ │ │ └── file.txt │ ├── submodule.errors │ │ ├── main │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── description │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 35 │ │ │ │ │ └── a00b70768f1ec43c44899ea4432fda59ac9c9e │ │ │ │ ├── 50 │ │ │ │ │ └── cc5e2f5a62345dec1fea537a8cf920c0fd96ec │ │ │ │ ├── 78 │ │ │ │ │ └── 981922613b2afb6025042ff6bd878ac1994e85 │ │ │ │ ├── 86 │ │ │ │ │ └── 88a8ca6cf509b12d9b25114e11207f53ac3fd1 │ │ │ │ ├── 6d │ │ │ │ │ └── bc05799659295e480894e367f4159d57fba30d │ │ │ │ ├── 9c │ │ │ │ │ └── 328ea69b41ad2bfa162c72fd52cf87376225b7 │ │ │ │ ├── aa │ │ │ │ │ └── ff74984cccd156a469afa7d9ab10e4777beb24 │ │ │ │ ├── ba │ │ │ │ │ └── bb0edaaf2b3722ba1ff69e975e06b88a0e03e3 │ │ │ │ └── bd │ │ │ │ │ └── b602d96061628d9fcfbb98f448676d8253ab57 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ └── sub │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── description │ │ │ ├── info │ │ │ └── exclude │ │ │ ├── objects │ │ │ ├── 78 │ │ │ │ └── 981922613b2afb6025042ff6bd878ac1994e85 │ │ │ ├── aa │ │ │ │ └── ff74984cccd156a469afa7d9ab10e4777beb24 │ │ │ └── e0 │ │ │ │ └── a9ea1e68396933f96f9dc0e6b3c1331ca15803 │ │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── submodule.git │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.noexec │ │ │ ├── applypatch-msg.sample │ │ │ ├── applypatch-msg.sample.noexec │ │ │ ├── commit-msg.noexec │ │ │ ├── commit-msg.sample │ │ │ ├── commit-msg.sample.noexec │ │ │ ├── post-commit.noexec │ │ │ ├── post-commit.sample │ │ │ ├── post-commit.sample.noexec │ │ │ ├── post-receive.noexec │ │ │ ├── post-receive.sample │ │ │ ├── post-receive.sample.noexec │ │ │ ├── post-update.noexec │ │ │ ├── post-update.sample │ │ │ ├── post-update.sample.noexec │ │ │ ├── pre-applypatch.noexec │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-applypatch.sample.noexec │ │ │ ├── pre-commit.noexec │ │ │ ├── pre-commit.sample │ │ │ ├── pre-commit.sample.noexec │ │ │ ├── pre-rebase.noexec │ │ │ ├── pre-rebase.sample │ │ │ ├── pre-rebase.sample.noexec │ │ │ ├── prepare-commit-msg.noexec │ │ │ ├── prepare-commit-msg.sample │ │ │ ├── prepare-commit-msg.sample.noexec │ │ │ ├── update.noexec │ │ │ ├── update.sample │ │ │ └── update.sample.noexec │ │ ├── info │ │ │ └── exclude │ │ ├── objects │ │ │ ├── 12 │ │ │ │ └── 6c2237cdb809c8794c332f774dd8e37e059a61 │ │ │ ├── 24 │ │ │ │ └── c9f45169143e4ba6728b90323adb74d491ade2 │ │ │ ├── 29 │ │ │ │ └── 3a6e0d110fdbeed9729d87945876a0c52da182 │ │ │ ├── 34 │ │ │ │ └── 95be77fb5a23a22ebff0880b93bebeafa04665 │ │ │ ├── 42 │ │ │ │ └── fd2819d05e5b2b733f0a20e9b8b918e6e62141 │ │ │ ├── 50 │ │ │ │ └── da68fbb55bd9cf2139e30f2f29dda0d2a9b9ba │ │ │ ├── 52 │ │ │ │ └── a266a58f2c028ad7de4dfd3a72fdf76b0d4e24 │ │ │ ├── 54 │ │ │ │ └── 8f30905eed7001d44b1fe514c1e2fffef76bc4 │ │ │ ├── 69 │ │ │ │ └── 9089aa2f03b047b4ad30262720f23c797b7c4a │ │ │ ├── 79 │ │ │ │ └── 56c497d85f9d23aad4a5cedcd2eb60a96a2afa │ │ │ ├── 82 │ │ │ │ └── d1c74fa8ec94548cc99e06736d570adca4da51 │ │ │ ├── 98 │ │ │ │ └── 570b55ca0dac24ac6aaa4a953a8206c17a2423 │ │ │ ├── 09 │ │ │ │ └── f4eb4218bcbea3e3fa07ed552e1d4e9a6ffda7 │ │ │ ├── 0f │ │ │ │ └── 3b0c8ab8bd046621f65cf009b6c540ea413e67 │ │ │ ├── 2e │ │ │ │ └── d62a8dd568360088dc67a6d276b7558c05c765 │ │ │ ├── 6c │ │ │ │ └── 8bad9b5237ff3165ea64690fa0285ea60c0e65 │ │ │ ├── 6d │ │ │ │ └── 944ac86dd5a45265873ddaa60e7ec343c1c4bb │ │ │ ├── 9d │ │ │ │ └── aeafb9864cf43055ae93beb0afd6c7d144bfa4 │ │ │ ├── ac │ │ │ │ └── eaf13d0f416299c6048e8b1c00b2e543566a27 │ │ │ ├── ad │ │ │ │ └── 0562736e6371f16d765dfd331f20f57ea77292 │ │ │ ├── af │ │ │ │ └── cb01c9ae3b02fce0954be13a02030dedc43c83 │ │ │ ├── c1 │ │ │ │ └── 09d5b45c1db73ea6aa9a669ef3beea68fb518e │ │ │ ├── e0 │ │ │ │ └── c863d2b3a77de16317267f661c67c6964ef92a │ │ │ ├── e4 │ │ │ │ └── 5b8605e3e8ec1f762f5641165f906a646d7eba │ │ │ ├── e5 │ │ │ │ └── 6de42e9b63cd7609592a9a5f8bbcbd0f5d7b2f │ │ │ └── ef │ │ │ │ └── 52662fc444e6788c06a0239a2fd1a2732b4c04 │ │ └── refs │ │ │ ├── heads │ │ │ ├── TW-71691 │ │ │ ├── TW-72198 │ │ │ └── master │ │ │ ├── pull │ │ │ └── 1 │ │ │ └── tags │ │ │ ├── TW-65043 │ │ │ └── v1.0 │ ├── submodule_no_master.git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 19 │ │ │ │ └── 0a18037c64c43e6b11489df4bf0b9eb6d2c9bf │ │ │ ├── 56 │ │ │ │ └── fbec727d40d20c86a65f7af0fa748aad65af3b │ │ │ └── a6 │ │ │ │ └── 6fa67db241d4a877866277b016318575cc8982 │ │ └── refs │ │ │ └── heads │ │ │ └── main │ ├── submodules_and_checkout_rules │ │ └── after │ │ │ └── first-level-submodule │ │ │ ├── .gitmodules │ │ │ ├── sub-sub │ │ │ ├── file.txt │ │ │ └── new file.txt │ │ │ └── submoduleFile.txt │ ├── submodules_and_checkout_rules2 │ │ └── after │ │ │ └── first-level-submodule │ │ │ └── sub-sub │ │ │ ├── file.txt │ │ │ └── new file.txt │ ├── submodules_and_checkout_rules3 │ │ └── after │ │ │ ├── .gitmodules │ │ │ ├── dir │ │ │ ├── b.txt │ │ │ ├── d.txt │ │ │ └── q.txt │ │ │ ├── first-level-submodule │ │ │ ├── .gitmodules │ │ │ ├── sub-sub │ │ │ │ └── new file.txt │ │ │ └── submoduleFile.txt │ │ │ └── readme.txt │ └── submodules_and_checkout_rules4 │ │ └── after │ │ └── first-level-submodule │ │ └── sub-sub │ │ └── file.txt │ ├── native-git-testng.xml │ └── without-git-operations.xml ├── lib ├── common │ ├── JavaEWAH-1.1.6.jar │ ├── bcprov-jdk18on-1.78.jar │ ├── bcutil-jdk18on-1.78.jar │ ├── commons-codec-1.10.jar │ ├── commons-logging-1.2.jar │ ├── fluent-hc-4.5.14.jar │ ├── httpclient-4.5.14.jar │ ├── httpclient-cache-4.5.14.jar │ ├── httpcore-4.4.16.jar │ ├── httpmime-4.5.14.jar │ ├── jsch-0.1.67.jar │ ├── jzlib-1.1.3.jar │ ├── org.eclipse.egit.github.core-2.4.0-SNAPSHOT.jar │ ├── org.eclipse.jgit-5.10.0.202012080955-r.jar │ ├── org.eclipse.jgit.http.apache-5.10.0.202012080955-r.jar │ ├── org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r.jar │ ├── quartz-2.3.2.jar │ ├── slf4j-api-1.7.5.jar │ ├── slf4j-log4j12-1.7.5.jar │ └── src │ │ ├── JavaEWAH-1.1.6-sources.jar │ │ ├── commons-codec-1.10-sources.jar │ │ ├── fluent-hc-4.5.14-sources.jar │ │ ├── httpclient-4.5.14-sources.jar │ │ ├── httpclient-cache-4.5.14-sources.jar │ │ ├── httpcore-4.4.16-sources.jar │ │ ├── httpmime-4.5.14-sources.jar │ │ ├── jsch-0.1.67-sources.jar │ │ ├── jzlib-1.1.3-sources.jar │ │ ├── org.eclipse.egit.github.core-2.4.0-SNAPSHOT-sources.jar │ │ ├── org.eclipse.jgit-5.10.0.202012080955-r-sources.jar │ │ ├── org.eclipse.jgit.http.apache-5.10.0.202012080955-r-sources.jar │ │ └── org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r-sources.jar ├── compile │ └── javac2 │ │ ├── asm-commons.jar │ │ ├── asm.jar │ │ ├── javac2.jar │ │ ├── jdom.jar │ │ └── readme.txt └── server │ ├── bcpg-jdk18on-1.78.jar │ ├── bcpkix-jdk18on-1.78.jar │ ├── org.eclipse.jgit.lfs-5.10.0.202012080955-r-sources.jar │ └── org.eclipse.jgit.lfs-5.10.0.202012080955-r.jar ├── license-third-party.ftl ├── license ├── JSch.LICENSE.txt └── jgit.LICENSE.txt ├── pom.xml ├── root └── teamcity-plugin.dist.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | git-plugin master -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/ant.xml -------------------------------------------------------------------------------- /.idea/artifacts/git_agent_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/git_agent_jar.xml -------------------------------------------------------------------------------- /.idea/artifacts/git_common_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/git_common_jar.xml -------------------------------------------------------------------------------- /.idea/artifacts/git_server_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/git_server_jar.xml -------------------------------------------------------------------------------- /.idea/artifacts/git_server_tc_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/git_server_tc_jar.xml -------------------------------------------------------------------------------- /.idea/artifacts/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/plugin.xml -------------------------------------------------------------------------------- /.idea/artifacts/vcs_worker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/vcs_worker.xml -------------------------------------------------------------------------------- /.idea/artifacts/zip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/artifacts/zip.xml -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/open_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/copyright/open_source.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Constantin_Plotnikov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/dictionaries/Constantin_Plotnikov.xml -------------------------------------------------------------------------------- /.idea/dictionaries/nd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/dictionaries/nd.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/libraries/JavaEWAH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/JavaEWAH.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Agent.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Agent_OAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Agent_OAuth.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Common_Connection_API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Common_Connection_API.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Open_API_agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Open_API_agent.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Open_API_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Open_API_common.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Open_API_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Open_API_server.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Tests.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Third_Party.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Third_Party.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_Vcs_Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_Vcs_Api.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_common.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_patches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_patches.xml -------------------------------------------------------------------------------- /.idea/libraries/TeamCity_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TeamCity_server.xml -------------------------------------------------------------------------------- /.idea/libraries/TestLibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/TestLibs.xml -------------------------------------------------------------------------------- /.idea/libraries/Tomcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/Tomcat.xml -------------------------------------------------------------------------------- /.idea/libraries/Trilead_SSH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/Trilead_SSH.xml -------------------------------------------------------------------------------- /.idea/libraries/commons_codec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/commons_codec.xml -------------------------------------------------------------------------------- /.idea/libraries/httpclient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/httpclient.xml -------------------------------------------------------------------------------- /.idea/libraries/jgit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/jgit.xml -------------------------------------------------------------------------------- /.idea/libraries/jgit_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/jgit_server.xml -------------------------------------------------------------------------------- /.idea/libraries/jsch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/jsch.xml -------------------------------------------------------------------------------- /.idea/libraries/org_eclipse_egit_github_core_2_4_0_SNAPSHOT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/org_eclipse_egit_github_core_2_4_0_SNAPSHOT.xml -------------------------------------------------------------------------------- /.idea/libraries/org_testcontainers_testcontainers_1_16_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/org_testcontainers_testcontainers_1_16_0.xml -------------------------------------------------------------------------------- /.idea/libraries/quartz_2_3_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/quartz_2_3_2.xml -------------------------------------------------------------------------------- /.idea/libraries/slf4j_api_1_7_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/libraries/slf4j_api_1_7_5.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/auth_git_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/runConfigurations/auth_git_tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/native_git_tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/runConfigurations/native_git_tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/runConfigurations/tests.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/tests_server_native_git.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/runConfigurations/tests_server_native_git.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/README.md -------------------------------------------------------------------------------- /git-agent/git-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/git-agent -------------------------------------------------------------------------------- /git-agent/git-agent-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/git-agent-internal -------------------------------------------------------------------------------- /git-agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/pom.xml -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/FS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/FS.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/FSImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/FSImpl.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GCIdleTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GCIdleTask.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GitDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GitDetector.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GitFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/GitFactory.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/JSchClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/JSchClient.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/Updater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/Updater.java -------------------------------------------------------------------------------- /git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/UpdaterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/agent/UpdaterImpl.java -------------------------------------------------------------------------------- /git-agent/src/main/java/org/jetbrains/git4idea/ssh/GitSSHHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/org/jetbrains/git4idea/ssh/GitSSHHandler.java -------------------------------------------------------------------------------- /git-agent/src/main/java/org/jetbrains/git4idea/ssh/GitSSHService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/org/jetbrains/git4idea/ssh/GitSSHService.java -------------------------------------------------------------------------------- /git-agent/src/main/java/org/jetbrains/git4idea/util/FastByteArrayBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/org/jetbrains/git4idea/util/FastByteArrayBuilder.java -------------------------------------------------------------------------------- /git-agent/src/main/java/org/jetbrains/git4idea/util/ScriptGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/java/org/jetbrains/git4idea/util/ScriptGenerator.java -------------------------------------------------------------------------------- /git-agent/src/main/resources/META-INF/build-agent-plugin-git.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/src/main/resources/META-INF/build-agent-plugin-git.xml -------------------------------------------------------------------------------- /git-agent/teamcity-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-agent/teamcity-plugin.xml -------------------------------------------------------------------------------- /git-common/git-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/git-common -------------------------------------------------------------------------------- /git-common/git-common-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/git-common-internal -------------------------------------------------------------------------------- /git-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/pom.xml -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AgentCleanPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AgentCleanPolicy.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AuthSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AuthSettings.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AuthSettingsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AuthSettingsImpl.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommandLineUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommandLineUtil.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommonURIish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommonURIish.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Constants.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitURLMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitURLMapper.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitUtils.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVcsRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVcsRoot.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVersion.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/HashCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/HashCalculator.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/MirrorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/MirrorConfig.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/MirrorManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/MirrorManager.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PluginConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PluginConfig.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PropertiesHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PropertiesHelper.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ProxyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ProxyHandler.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Retry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Retry.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/URIishHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/URIishHelper.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/command/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/command/Context.java -------------------------------------------------------------------------------- /git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/command/GitExec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-common/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/command/GitExec.java -------------------------------------------------------------------------------- /git-dsl/Git.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-dsl/Git.xml -------------------------------------------------------------------------------- /git-server-tc/git-server-tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server-tc/git-server-tc -------------------------------------------------------------------------------- /git-server-tc/git-server-tc-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server-tc/git-server-tc-internal -------------------------------------------------------------------------------- /git-server-tc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server-tc/pom.xml -------------------------------------------------------------------------------- /git-server-tc/src/main/resources/META-INF/build-server-plugin-git-tc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server-tc/src/main/resources/META-INF/build-server-plugin-git-tc.xml -------------------------------------------------------------------------------- /git-server-tc/src/main/resources/META-INF/do-not-load-in-vcs-mode: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-server/git-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/git-server -------------------------------------------------------------------------------- /git-server/git-server-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/git-server-internal -------------------------------------------------------------------------------- /git-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/pom.xml -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AddCommandServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/AddCommandServer.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ChangeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ChangeType.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Cleanup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Cleanup.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CleanupRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CleanupRunner.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommitLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommitLoader.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommitLoaderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommitLoaderImpl.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommonURIishImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/CommonURIishImpl.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ConfigCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/ConfigCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchCommandImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchCommandImpl.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchContext.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/FetchSettings.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Fetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/Fetcher.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GcErrors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GcErrors.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitCommitSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitCommitSupport.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitFetchService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitFetchService.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitGcProcess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitGcProcess.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitMapFullPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitMapFullPath.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitMergeSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitMergeSupport.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitProgress.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitServerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitServerUtil.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitUrlSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitUrlSupport.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVcsSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/GitVcsSupport.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/JSchLoggers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/JSchLoggers.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LimitingRevWalk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LimitingRevWalk.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LogUtil.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LsRemoteCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/LsRemoteCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/OperationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/OperationContext.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PluginConfigImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PluginConfigImpl.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PushCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/PushCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/RefCommit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/RefCommit.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/RevisionsCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/RevisionsCache.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/SGitVcsRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/SGitVcsRoot.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/SSLSchemePatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/SSLSchemePatcher.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/TagCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/TagCommand.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/TransportFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/TransportFactory.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/URIishHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/URIishHelperImpl.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsAction.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsHostingRepo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsHostingRepo.java -------------------------------------------------------------------------------- /git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/jetbrains/buildServer/buildTriggers/vcs/git/VcsOperation.java -------------------------------------------------------------------------------- /git-server/src/main/java/org/eclipse/jgit/internal/storage/file/MemoryMappedPackIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/org/eclipse/jgit/internal/storage/file/MemoryMappedPackIndex.java -------------------------------------------------------------------------------- /git-server/src/main/java/org/eclipse/jgit/treewalk/SubmoduleAwareTreeIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/java/org/eclipse/jgit/treewalk/SubmoduleAwareTreeIterator.java -------------------------------------------------------------------------------- /git-server/src/main/resources/META-INF/build-server-plugin-git.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/META-INF/build-server-plugin-git.xml -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/_fallbackTokenInfo.jspf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/_fallbackTokenInfo.jspf -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/gitCustomizeBranches.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/gitCustomizeBranches.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/gitSettings.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/gitSettings.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/gitStatusTab.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/gitStatusTab.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/gitAgentVersionReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/gitAgentVersionReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/gitGcErrorsReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/gitGcErrorsReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/gitLocalFileUrlReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/gitLocalFileUrlReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/gitNotFoundReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/gitNotFoundReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/gitServerVersionReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/gitServerVersionReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/health/switchToNativeGitReport.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/health/switchToNativeGitReport.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/testConnectionError.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/testConnectionError.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/testConnectionErrors.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/testConnectionErrors.jsp -------------------------------------------------------------------------------- /git-server/src/main/resources/buildServerResources/vcsRootsContainer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-server/src/main/resources/buildServerResources/vcsRootsContainer.jsp -------------------------------------------------------------------------------- /git-tests/git-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/git-tests -------------------------------------------------------------------------------- /git-tests/git-tests-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/git-tests-internal -------------------------------------------------------------------------------- /git-tests/lib/assertj-core-1.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/assertj-core-1.6.0.jar -------------------------------------------------------------------------------- /git-tests/lib/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /git-tests/lib/guava-30.1.1-jre.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/guava-30.1.1-jre.jar -------------------------------------------------------------------------------- /git-tests/lib/hamcrest-core-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/hamcrest-core-1.1.jar -------------------------------------------------------------------------------- /git-tests/lib/hamcrest-integration-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/hamcrest-integration-1.1.jar -------------------------------------------------------------------------------- /git-tests/lib/hamcrest-library-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/hamcrest-library-1.1.jar -------------------------------------------------------------------------------- /git-tests/lib/jmock-2.5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/jmock-2.5.1.jar -------------------------------------------------------------------------------- /git-tests/lib/jmock-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/jmock-SNAPSHOT.jar -------------------------------------------------------------------------------- /git-tests/lib/jmock-legacy-2.5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/jmock-legacy-2.5.1.jar -------------------------------------------------------------------------------- /git-tests/lib/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/junit-4.11.jar -------------------------------------------------------------------------------- /git-tests/lib/mockito-all-1.10.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/mockito-all-1.10.19.jar -------------------------------------------------------------------------------- /git-tests/lib/objenesis-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/objenesis-1.0.jar -------------------------------------------------------------------------------- /git-tests/lib/testng-6.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/lib/testng-6.8.jar -------------------------------------------------------------------------------- /git-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/pom.xml -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/CleanerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/CleanerTest.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/GitTestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/GitTestUtil.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/MockFS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/MockFS.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/MockFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/MockFetcher.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/ProxyTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/ProxyTests.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/RetryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/RetryTest.java -------------------------------------------------------------------------------- /git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/SSLTestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/java/jetbrains/buildServer/buildTriggers/vcs/git/tests/SSLTestUtil.java -------------------------------------------------------------------------------- /git-tests/src/test/resources/auth-git-tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/auth-git-tests.xml -------------------------------------------------------------------------------- /git-tests/src/test/resources/common-git-operations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/common-git-operations.xml -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/README -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-1/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-1/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-1/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-db237b16151c8b851442bfb070f1977340439218.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-1/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-1/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-2/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-2/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-2/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-0bdaea6dadba52891ad12cd2a7bd7301f6ae4234.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-43643-2/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-43643-2/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-63901-1/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-1/refs/heads/master: -------------------------------------------------------------------------------- 1 | 78fcadbf51f44cf78fce816be5e3943e4bb5f95c 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-2/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-63901-2/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-2/refs/heads/master: -------------------------------------------------------------------------------- 1 | 565f5f32581cd1dba1305c5f5651270c33f40323 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-submodule/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-submodule/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-63901-submodule/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-63901-submodule/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-63901-submodule/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-64281-1/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-1/refs/heads/br: -------------------------------------------------------------------------------- 1 | f3d37d0d8db3d2f78fdf58294ec57965bcbdab02 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-1/refs/heads/master: -------------------------------------------------------------------------------- 1 | 650e7fb0b9c655c3e0468a8c01c446fdeba08823 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-2/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-64281-2/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-2/refs/heads/br: -------------------------------------------------------------------------------- 1 | 7361e8beff17c08095a418615030065c9262123a 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64281-2/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-64281-2/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/refs/heads/b1: -------------------------------------------------------------------------------- 1 | 7afe31b738eb97b69c9b0ca033548d5a3eabe597 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/refs/heads/b2: -------------------------------------------------------------------------------- 1 | 7afe31b738eb97b69c9b0ca033548d5a3eabe597 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/refs/heads/b3: -------------------------------------------------------------------------------- 1 | 27a2e7b1004f3a69fad996f7fd18a14f9a4c4eec 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/refs/heads/b4: -------------------------------------------------------------------------------- 1 | 65f49c6f9c0970a893ec8e7645a35d8b7d1d7b36 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_1/refs/heads/master: -------------------------------------------------------------------------------- 1 | 3fe70d1959d56bf478a7ee01f2b5e57bf12e10df 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_2/refs/heads/b2: -------------------------------------------------------------------------------- 1 | 7afe31b738eb97b69c9b0ca033548d5a3eabe597 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_2/refs/heads/b3: -------------------------------------------------------------------------------- 1 | 6821229bee5b5cf5030e938caa1cb703a0edbc86 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_2/refs/heads/b4: -------------------------------------------------------------------------------- 1 | 65f49c6f9c0970a893ec8e7645a35d8b7d1d7b36 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455-no_second_fetch_if_from_revision_missing_2/refs/heads/master: -------------------------------------------------------------------------------- 1 | db31739d5d13aef2785189fe4f79b823b5dc6ab6 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-64455/deleted_commit_tmp/f.txt: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-65321/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-65321/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-65321/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-65321/refs/heads/master: -------------------------------------------------------------------------------- 1 | 75fbd02686508f1b8e053fd44e3ac158ba717dcf 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-65641-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-65641-1.zip -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-65641.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-65641.zip -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/FETCH_HEAD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/heads/branch-1: -------------------------------------------------------------------------------- 1 | 0971ef2b9b55ffedb10c527ea781307fd218fadb 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/heads/main: -------------------------------------------------------------------------------- 1 | 98d138a112bd47cee314e9b5f06ad8956f288215 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/namespace-1/ignored-1: -------------------------------------------------------------------------------- 1 | 02151a939e5d0a0cfdb652bfffa7be77cafbc48e 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/namespace-1/ignored-2: -------------------------------------------------------------------------------- 1 | e8262c8645fb1e9d245f8c7fd067c76a2ea57ad2 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/rewritten-1/main: -------------------------------------------------------------------------------- 1 | 0dbda778c5afddfcd892465c98fe7c84cdd81fcb 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/shared-1/shared-1: -------------------------------------------------------------------------------- 1 | 46b404e8f3548d152479fb96cfb09c3dec1d0fe3 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/TW-97575-report-only-heads-as-changes/refs/shared-1/shared-2: -------------------------------------------------------------------------------- 1 | 98d138a112bd47cee314e9b5f06ad8956f288215 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/cleanPatch1/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/cleanPatch1/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/cleanPatch1/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/content/dotgitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/content/dotgitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/content/readme.txt: -------------------------------------------------------------------------------- 1 | Test repository for teamcity. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/content/submodule file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/custom_config_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/custom_config_example -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/b.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/d.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/excluded_broken_submodule/after/dir/q.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/fetch_multiple_refspecs/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/fetch_multiple_refspecs/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/fetch_multiple_refspecs/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/fetch_multiple_refspecs/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/fetch_multiple_refspecs/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/fetch_multiple_refspecs/refs/tags/my_tag: -------------------------------------------------------------------------------- 1 | dd5d0adaeace9c4ae3ee5fcd1ab692d65ec296d6 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/docker_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/docker_key -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/docker_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/docker_key.pub -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_ecdsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_ecdsa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_ecdsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_ecdsa.pub -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_ecdsa_encrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_ecdsa_encrypted -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_ecdsa_encrypted.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_ecdsa_encrypted.pub -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_rsa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_rsa.pub -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_rsa_encrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_rsa_encrypted -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/id_rsa_encrypted.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/keys/id_rsa_encrypted.pub -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/keys/known_hosts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/topic2 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | d2e06a930fb98746f2208791e6cd5bb41e57ed3f 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/logs/HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/logs/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/logs/refs/heads/topic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/logs/refs/heads/topic -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/logs/refs/heads/topic2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/logs/refs/heads/topic2 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/00/03f1603abfe7fd784b95faa8ae4803598694a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/00/03f1603abfe7fd784b95faa8ae4803598694a0 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/02/173330af7d182a4a866fa23c7da1ba18aba718: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/02/173330af7d182a4a866fa23c7da1ba18aba718 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/08/0f42bbf244b09d98569644cdf8609777f23d15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/08/0f42bbf244b09d98569644cdf8609777f23d15 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/16/f18f3aa2c4979bd6efb8a38d5023cef3adfdfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/16/f18f3aa2c4979bd6efb8a38d5023cef3adfdfc -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/2d/fa36551b6ba80d4183daa2984bc4136970b1f6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/2d/fa36551b6ba80d4183daa2984bc4136970b1f6 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/2f/fada4169e6bd7961d107f607fcdcc0e6c7749d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/2f/fada4169e6bd7961d107f607fcdcc0e6c7749d -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/32/c34d0b46dbb1c3db244166a0947ea95fd04d6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/32/c34d0b46dbb1c3db244166a0947ea95fd04d6b -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/38/cc36e3ddcb33c72a22efec31df889001f79062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/38/cc36e3ddcb33c72a22efec31df889001f79062 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/3a/f22043460f69bbcbd41a008a9c3071f6a2bfc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/3a/f22043460f69bbcbd41a008a9c3071f6a2bfc7 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/49/7ad26749fd36bcd5a3ef982fb9fefa915c9d4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/49/7ad26749fd36bcd5a3ef982fb9fefa915c9d4b -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/61/780798228d17af2d34fce4cfbdf35556832472: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/61/780798228d17af2d34fce4cfbdf35556832472 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/68/b73163526a29a1f5a341f3b6fcd0d928748579: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/68/b73163526a29a1f5a341f3b6fcd0d928748579 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/6f/fbeea7e607c069bdfeea5ea10d7b139c06ecca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/6f/fbeea7e607c069bdfeea5ea10d7b139c06ecca -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/73/603e158c007b3efaddb406e4840cf43430960e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/73/603e158c007b3efaddb406e4840cf43430960e -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/78/981922613b2afb6025042ff6bd878ac1994e85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/78/981922613b2afb6025042ff6bd878ac1994e85 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/7e/8a1653bf24c1c1d8e7c20b6bdea272df729b1f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/7e/8a1653bf24c1c1d8e7c20b6bdea272df729b1f -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/8d/9f45ee6a6dc886bb31ed9c0231e281a7e8fbc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/8d/9f45ee6a6dc886bb31ed9c0231e281a7e8fbc9 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/a0/63d2f62f2d524201cc3f2e12c91a26fa91fe27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/a0/63d2f62f2d524201cc3f2e12c91a26fa91fe27 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/a2/5479ce62384bf15b5fb20b351801995b127e90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/a2/5479ce62384bf15b5fb20b351801995b127e90 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/aa/ff74984cccd156a469afa7d9ab10e4777beb24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/aa/ff74984cccd156a469afa7d9ab10e4777beb24 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/b2/5ddcf5f44e91c2e725a5a341e2a9db16a3c01a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/b2/5ddcf5f44e91c2e725a5a341e2a9db16a3c01a -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/bc/bb9d0b0a59b0f67da279dff3f0f9b425b5091b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/bc/bb9d0b0a59b0f67da279dff3f0f9b425b5091b -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/c1/f89248e4b6e47a4529d50d37b0840a14d2efb0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/c1/f89248e4b6e47a4529d50d37b0840a14d2efb0 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/cc/69c22bd5d25779e58ad91008e685cbbe7f700a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/cc/69c22bd5d25779e58ad91008e685cbbe7f700a -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/ce/e12cd2b836e519cfa84fcb081da9a0846386c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/ce/e12cd2b836e519cfa84fcb081da9a0846386c4 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/d2/e06a930fb98746f2208791e6cd5bb41e57ed3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/d2/e06a930fb98746f2208791e6cd5bb41e57ed3f -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/d5/bd1b76717b7284693ef23b547d972f6fc1d506: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/d5/bd1b76717b7284693ef23b547d972f6fc1d506 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/d7/3cf95b203b77a4f9ca969ac454e69eaebbf697: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/d7/3cf95b203b77a4f9ca969ac454e69eaebbf697 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/e0/3fccd6cda217cd0efabeca9a857ea949d64f8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/e0/3fccd6cda217cd0efabeca9a857ea949d64f8a -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/e3/c23121b97ca0e49aa938eda7fc11b8cb791214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/e3/c23121b97ca0e49aa938eda7fc11b8cb791214 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/f7/27882267df4f8fe0bc58c18559591918aefc54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/f7/27882267df4f8fe0bc58c18559591918aefc54 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/f7/7c43a1b3505016c9d07392084bed3d810b330e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/objects/f7/7c43a1b3505016c9d07392084bed3d810b330e -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/objects/info/packs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/refs/heads/topic: -------------------------------------------------------------------------------- 1 | 080f42bbf244b09d98569644cdf8609777f23d15 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/refs/heads/topic2: -------------------------------------------------------------------------------- 1 | cc69c22bd5d25779e58ad91008e685cbbe7f700a -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/merge/refs/heads/topic3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/merge/refs/heads/topic3 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch-case/after/FILE.L2U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch-case/after/FILE.L2U -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch-case/after/file.u2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch-case/after/file.u2l -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch-case/before/FILE.U2L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch-case/before/FILE.U2L -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch-case/before/file.l2u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch-case/before/file.l2u -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch-eol/after/readme.txt: -------------------------------------------------------------------------------- 1 | Test repository for teamcity.change 1 2 | add feature 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch.non.default.branch/after/dir/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch.non.default.branch/after/dir/b.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch.non.default.branch/after/dir/d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch.non.default.branch/after/dir/d.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch.non.default.branch/after/dir/q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch.non.default.branch/after/dir/q.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch.non.default.branch/after/readme.txt: -------------------------------------------------------------------------------- 1 | change author 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch1/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch2/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch3/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch3/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch3/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch3/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch3/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch4/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch5/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/after/FILE.L2U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch6/after/FILE.L2U -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/after/file.u2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch6/after/file.u2l -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch6/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/path/FILE.L2U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch7/after/path/FILE.L2U -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/after/path/file.u2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch7/after/path/file.u2l -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch7/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch8/after/FILE.L2U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch8/after/FILE.L2U -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch8/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch8/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch8/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/patch8/after/file.u2l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/patch8/after/file.u2l -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/pullRequestPatch/after/dir/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/pullRequestPatch/after/dir/b.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/pullRequestPatch/after/dir/d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/pullRequestPatch/after/dir/d.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/pullRequestPatch/after/dir/not_ignored_by_checkout_rules.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/pullRequestPatch/after/dir/q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/pullRequestPatch/after/dir/q.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/pullRequestPatch/after/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/pullRequestPatch/after/readme.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/TW-43433 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/applypatch-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/commit-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/commit-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/commit-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/commit-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-commit.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-commit.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-commit.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-commit.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-receive.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-receive.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-receive.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-receive.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-receive.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-update.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-update.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/post-update.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/post-update.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-applypatch.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-commit.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-commit.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-commit.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-commit.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/pre-rebase.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/prepare-commit-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/update.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/update.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/hooks/update.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/hooks/update.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-34c5b0976fef7a69bb031b300a62e22f29f5af1e.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-65043: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/refs/heads/TW-65043 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-66105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/refs/heads/TW-66105 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-71691: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/refs/heads/TW-71691 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-71924: -------------------------------------------------------------------------------- 1 | b96aa6a603a178bcf34ac0aff54c004104381f41 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-71933: -------------------------------------------------------------------------------- 1 | f618f42b6e1a076217475224abab174c4f4f7ac3 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-72198: -------------------------------------------------------------------------------- 1 | fd704a963d073ae4a2284eb03699433e48792747 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/TW-96384: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo.git/refs/heads/TW-96384 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/heads/wrong-submodule: -------------------------------------------------------------------------------- 1 | 9cae9cd1e9ada0df6893c937bfc41c35df548b64 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo.git/refs/tags/v0.5: -------------------------------------------------------------------------------- 1 | 8f018e5e8427f6fc5afc4bf89a66c2d2bd21b955 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | fix build file again 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/ORIG_HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/ORIG_HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/index -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/logs/HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br7_sub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br8 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/br9 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/mp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/mp1 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/logs/refs/heads/mp2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/objects/info/commit-graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/objects/info/commit-graph -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-d93c6a304dacf673af04f4608052ffdb5a27863b.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/refs/heads/br9: -------------------------------------------------------------------------------- 1 | 230143e85c0357ac11acfa21d8729393a7d817e2 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | src/File.java 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/post-update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-push.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/pre-receive.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/index -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module1/logs/HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module1/refs/heads/master: -------------------------------------------------------------------------------- 1 | 2a93ae9b4f2a150cd4754991557a93303df0edd7 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | test/Test.java 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/FETCH_HEAD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/hooks/pre-push.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/index -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_module2/logs/HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_module2/refs/heads/master: -------------------------------------------------------------------------------- 1 | 985c6149804821072c79bf0d8090bff9090331f7 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | module2 updated: test/Test.java 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/index -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_checkout_rules_with_submodules/refs/heads/master: -------------------------------------------------------------------------------- 1 | dc65ba0f3053d2248013e6dd0be3a61d57de44af 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.1/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.1/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.1/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-8626621bf6b50e0c2cf436c8d01853ffa781498b.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.1/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.1/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2.personal/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2.personal/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2.personal/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-3c71b5638065a33b8ce167a660de314b15f4617d.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2.personal/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2.personal/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-3c71b5638065a33b8ce167a660de314b15f4617d.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.2/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.2/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.3/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.3/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.3/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-1874fb0f28b5cb371cea7cb26e8c123e419241bc.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_fetch.3/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_fetch.3/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_shallow_fetch.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_shallow_fetch.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_for_shallow_fetch.git/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_shallow_fetch.git/refs/heads/main: -------------------------------------------------------------------------------- 1 | fd1eb9776b5fad5cc433586f7933811c6853917d 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_shallow_fetch.git/refs/tags/tag1: -------------------------------------------------------------------------------- 1 | fd1eb9776b5fad5cc433586f7933811c6853917d 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_for_shallow_fetch.git/refs/tags/tag2: -------------------------------------------------------------------------------- 1 | a1d6299597f8d6f6d8316577c46cc8fffd657d5e 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | file7.txt 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/fsmonitor-watchman.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/fsmonitor-watchman.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/post-update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/pre-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/pre-push.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/pre-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/pre-receive.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/index -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/info/refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/logs/HEAD -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_with_tags/logs/refs/heads/master -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-e77cba9796890aa070ed779d8dcee6b822d42f89.pack 2 | 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/heads/master: -------------------------------------------------------------------------------- 1 | 1d053aefa2dbda1d51d814634544a8096785abef 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/release-1.0: -------------------------------------------------------------------------------- 1 | c069df1896cc63f0b1ad747434385558a8049307 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/release-2.0: -------------------------------------------------------------------------------- 1 | 9deb49b1c95e9eae1f783f249d9fa26547eac7ad 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/release-3.0: -------------------------------------------------------------------------------- 1 | 74577c15655ab221af62663d8977a2d083aca952 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/tag1: -------------------------------------------------------------------------------- 1 | bb291486f56a58408aa52cd580b39a144511414b 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/tag2: -------------------------------------------------------------------------------- 1 | 8b25cbabacb5a5e63164032df2da7debecb85d0e 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/tag3: -------------------------------------------------------------------------------- 1 | 0243cec4890c82972daa95afa9268d09c697a846 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_with_tags/refs/tags/tag4: -------------------------------------------------------------------------------- 1 | 1d053aefa2dbda1d51d814634544a8096785abef 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_without_master.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/default 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_without_master.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/repo_without_master.git/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/repo_without_master.git/refs/heads/default: -------------------------------------------------------------------------------- 1 | 3c13027cadf7085c456bfb5519d1bb446fb5e802 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/post-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/post-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/post-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/post-receive.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/post-update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/sub-submodule.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/sub-submodule.git/packed-refs -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-added-ignore/after/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added-ignore/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-added/after/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/after/submodule/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-added/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-modified-ignore/after/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-modified-ignore/before/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified-ignore/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-modified/after/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/submodule/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/after/submodule/new file.txt: -------------------------------------------------------------------------------- 1 | This is a new file in submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-modified/before/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-modified/before/submodule/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-removed-ignore/before/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed-ignore/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/after/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/after/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/after/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/after/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/after/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule-removed/before/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/dir with space/file with space.txt: -------------------------------------------------------------------------------- 1 | some text -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/dir1/file1.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/dir1/file3.txt: -------------------------------------------------------------------------------- 1 | ccc 2 | ddd 3 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/dir1/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | modified 2 | bbb -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/file_in_branch.txt: -------------------------------------------------------------------------------- 1 | file from the test_branch 2 | file modified -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule-removed/before/submodule/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/main/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/main/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/main/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/main/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/main/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/main/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/main/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/main/refs/heads/master: -------------------------------------------------------------------------------- 1 | 9c328ea69b41ad2bfa162c72fd52cf87376225b7 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/sub/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/sub/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/sub/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/sub/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/sub/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/sub/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.errors/sub/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.errors/sub/refs/heads/master: -------------------------------------------------------------------------------- 1 | e0a9ea1e68396933f96f9dc0e6b3c1331ca15803 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/description -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/applypatch-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/commit-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-commit.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-commit.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-commit.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-commit.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-receive.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-receive.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-receive.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-receive.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-receive.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-update.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-update.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/post-update.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/post-update.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-applypatch.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-commit.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/pre-rebase.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/prepare-commit-msg.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/update.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/update.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/update.sample -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/hooks/update.sample.noexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/hooks/update.sample.noexec -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/info/exclude -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/heads/TW-71691: -------------------------------------------------------------------------------- 1 | e0c863d2b3a77de16317267f661c67c6964ef92a 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/heads/TW-72198: -------------------------------------------------------------------------------- 1 | 699089aa2f03b047b4ad30262720f23c797b7c4a 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 42fd2819d05e5b2b733f0a20e9b8b918e6e62141 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/pull/1: -------------------------------------------------------------------------------- 1 | 126c2237cdb809c8794c332f774dd8e37e059a61 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/tags/TW-65043: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/refs/tags/TW-65043 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule.git/refs/tags/v1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule.git/refs/tags/v1.0 -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule_no_master.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule_no_master.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodule_no_master.git/config -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodule_no_master.git/refs/heads/main: -------------------------------------------------------------------------------- 1 | 56fbec727d40d20c86a65f7af0fa748aad65af3b 2 | -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules/after/first-level-submodule/sub-sub/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules/after/first-level-submodule/sub-sub/new file.txt: -------------------------------------------------------------------------------- 1 | This is a new file in submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules2/after/first-level-submodule/sub-sub/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules2/after/first-level-submodule/sub-sub/new file.txt: -------------------------------------------------------------------------------- 1 | This is a new file in submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/.gitmodules -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/b.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/d.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/dir/q.txt -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/first-level-submodule/sub-sub/new file.txt: -------------------------------------------------------------------------------- 1 | This is a new file in submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules3/after/readme.txt: -------------------------------------------------------------------------------- 1 | Test repository for teamcity. -------------------------------------------------------------------------------- /git-tests/src/test/resources/data/submodules_and_checkout_rules4/after/first-level-submodule/sub-sub/file.txt: -------------------------------------------------------------------------------- 1 | The sample file is submodule. -------------------------------------------------------------------------------- /git-tests/src/test/resources/native-git-testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/native-git-testng.xml -------------------------------------------------------------------------------- /git-tests/src/test/resources/without-git-operations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/git-tests/src/test/resources/without-git-operations.xml -------------------------------------------------------------------------------- /lib/common/JavaEWAH-1.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/JavaEWAH-1.1.6.jar -------------------------------------------------------------------------------- /lib/common/bcprov-jdk18on-1.78.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/bcprov-jdk18on-1.78.jar -------------------------------------------------------------------------------- /lib/common/bcutil-jdk18on-1.78.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/bcutil-jdk18on-1.78.jar -------------------------------------------------------------------------------- /lib/common/commons-codec-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/commons-codec-1.10.jar -------------------------------------------------------------------------------- /lib/common/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/commons-logging-1.2.jar -------------------------------------------------------------------------------- /lib/common/fluent-hc-4.5.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/fluent-hc-4.5.14.jar -------------------------------------------------------------------------------- /lib/common/httpclient-4.5.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/httpclient-4.5.14.jar -------------------------------------------------------------------------------- /lib/common/httpclient-cache-4.5.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/httpclient-cache-4.5.14.jar -------------------------------------------------------------------------------- /lib/common/httpcore-4.4.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/httpcore-4.4.16.jar -------------------------------------------------------------------------------- /lib/common/httpmime-4.5.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/httpmime-4.5.14.jar -------------------------------------------------------------------------------- /lib/common/jsch-0.1.67.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/jsch-0.1.67.jar -------------------------------------------------------------------------------- /lib/common/jzlib-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/jzlib-1.1.3.jar -------------------------------------------------------------------------------- /lib/common/org.eclipse.egit.github.core-2.4.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/org.eclipse.egit.github.core-2.4.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /lib/common/org.eclipse.jgit-5.10.0.202012080955-r.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/org.eclipse.jgit-5.10.0.202012080955-r.jar -------------------------------------------------------------------------------- /lib/common/org.eclipse.jgit.http.apache-5.10.0.202012080955-r.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/org.eclipse.jgit.http.apache-5.10.0.202012080955-r.jar -------------------------------------------------------------------------------- /lib/common/org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r.jar -------------------------------------------------------------------------------- /lib/common/quartz-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/quartz-2.3.2.jar -------------------------------------------------------------------------------- /lib/common/slf4j-api-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/slf4j-api-1.7.5.jar -------------------------------------------------------------------------------- /lib/common/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /lib/common/src/JavaEWAH-1.1.6-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/JavaEWAH-1.1.6-sources.jar -------------------------------------------------------------------------------- /lib/common/src/commons-codec-1.10-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/commons-codec-1.10-sources.jar -------------------------------------------------------------------------------- /lib/common/src/fluent-hc-4.5.14-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/fluent-hc-4.5.14-sources.jar -------------------------------------------------------------------------------- /lib/common/src/httpclient-4.5.14-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/httpclient-4.5.14-sources.jar -------------------------------------------------------------------------------- /lib/common/src/httpclient-cache-4.5.14-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/httpclient-cache-4.5.14-sources.jar -------------------------------------------------------------------------------- /lib/common/src/httpcore-4.4.16-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/httpcore-4.4.16-sources.jar -------------------------------------------------------------------------------- /lib/common/src/httpmime-4.5.14-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/httpmime-4.5.14-sources.jar -------------------------------------------------------------------------------- /lib/common/src/jsch-0.1.67-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/jsch-0.1.67-sources.jar -------------------------------------------------------------------------------- /lib/common/src/jzlib-1.1.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/jzlib-1.1.3-sources.jar -------------------------------------------------------------------------------- /lib/common/src/org.eclipse.egit.github.core-2.4.0-SNAPSHOT-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/org.eclipse.egit.github.core-2.4.0-SNAPSHOT-sources.jar -------------------------------------------------------------------------------- /lib/common/src/org.eclipse.jgit-5.10.0.202012080955-r-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/org.eclipse.jgit-5.10.0.202012080955-r-sources.jar -------------------------------------------------------------------------------- /lib/common/src/org.eclipse.jgit.http.apache-5.10.0.202012080955-r-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/org.eclipse.jgit.http.apache-5.10.0.202012080955-r-sources.jar -------------------------------------------------------------------------------- /lib/common/src/org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/common/src/org.eclipse.jgit.ssh.jsch-5.10.0.202012080955-r-sources.jar -------------------------------------------------------------------------------- /lib/compile/javac2/asm-commons.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/compile/javac2/asm-commons.jar -------------------------------------------------------------------------------- /lib/compile/javac2/asm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/compile/javac2/asm.jar -------------------------------------------------------------------------------- /lib/compile/javac2/javac2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/compile/javac2/javac2.jar -------------------------------------------------------------------------------- /lib/compile/javac2/jdom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/compile/javac2/jdom.jar -------------------------------------------------------------------------------- /lib/compile/javac2/readme.txt: -------------------------------------------------------------------------------- 1 | This directory contains Javac2 binaries from IDEA #100136. 2 | -------------------------------------------------------------------------------- /lib/server/bcpg-jdk18on-1.78.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/server/bcpg-jdk18on-1.78.jar -------------------------------------------------------------------------------- /lib/server/bcpkix-jdk18on-1.78.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/server/bcpkix-jdk18on-1.78.jar -------------------------------------------------------------------------------- /lib/server/org.eclipse.jgit.lfs-5.10.0.202012080955-r-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/server/org.eclipse.jgit.lfs-5.10.0.202012080955-r-sources.jar -------------------------------------------------------------------------------- /lib/server/org.eclipse.jgit.lfs-5.10.0.202012080955-r.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/lib/server/org.eclipse.jgit.lfs-5.10.0.202012080955-r.jar -------------------------------------------------------------------------------- /license-third-party.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/license-third-party.ftl -------------------------------------------------------------------------------- /license/JSch.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/license/JSch.LICENSE.txt -------------------------------------------------------------------------------- /license/jgit.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/license/jgit.LICENSE.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/pom.xml -------------------------------------------------------------------------------- /root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/root -------------------------------------------------------------------------------- /teamcity-plugin.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/teamcity-git/HEAD/teamcity-plugin.dist.xml --------------------------------------------------------------------------------