├── .bazelversion ├── .mvn ├── jvm.config └── maven.config ├── .gitattributes ├── org.eclipse.jgit ├── .gitignore ├── plugin.properties ├── src │ └── org │ │ └── eclipse │ │ └── jgit │ │ ├── util │ │ ├── package-info.java │ │ └── io │ │ │ └── package-info.java │ │ ├── fnmatch │ │ └── package-info.java │ │ ├── internal │ │ ├── package-info.java │ │ ├── fsck │ │ │ └── package-info.java │ │ ├── ketch │ │ │ └── package-info.java │ │ └── storage │ │ │ ├── file │ │ │ └── package-info.java │ │ │ ├── pack │ │ │ └── package-info.java │ │ │ └── dfs │ │ │ └── package-info.java │ │ ├── nls │ │ └── package-info.java │ │ ├── submodule │ │ └── package-info.java │ │ ├── events │ │ └── package-info.java │ │ ├── patch │ │ └── package-info.java │ │ ├── diff │ │ └── package-info.java │ │ ├── notes │ │ └── package-info.java │ │ ├── revplot │ │ └── package-info.java │ │ ├── api │ │ ├── errors │ │ │ ├── package-info.java │ │ │ └── StashApplyFailureException.java │ │ └── package-info.java │ │ ├── attributes │ │ └── package-info.java │ │ ├── blame │ │ └── package-info.java │ │ ├── errors │ │ └── package-info.java │ │ ├── merge │ │ └── package-info.java │ │ ├── revwalk │ │ ├── package-info.java │ │ └── filter │ │ │ └── package-info.java │ │ ├── lib │ │ ├── package-info.java │ │ └── CheckoutEntry.java │ │ ├── treewalk │ │ ├── filter │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── dircache │ │ └── package-info.java │ │ ├── ignore │ │ └── package-info.java │ │ └── transport │ │ ├── package-info.java │ │ └── resolver │ │ └── package-info.java ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ ├── internal │ │ ├── storage │ │ │ └── dfs │ │ │ │ └── DfsText.properties │ │ └── ketch │ │ │ └── KetchText.properties │ │ └── gitrepo │ │ └── internal │ │ └── RepoText.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.coverage ├── .gitignore ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── .project └── .classpath ├── org.eclipse.jgit.lfs ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── BUILD ├── .classpath └── .project ├── org.eclipse.jgit.pgm ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── resources │ └── log4j.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath └── .project ├── org.eclipse.jgit.ui ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── BUILD ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── awtui │ │ └── UIText.properties ├── META-INF │ ├── SOURCE-MANIFEST.MF │ └── MANIFEST.MF ├── .classpath └── .project ├── org.eclipse.jgit.archive ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── archive │ │ └── internal │ │ └── ArchiveText.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.http.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath ├── .project └── org.eclipse.jgit.http--All-Tests.launch ├── org.eclipse.jgit.junit.ssh ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.junit ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.lfs.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath ├── BUILD ├── .project └── META-INF │ └── MANIFEST.MF ├── org.eclipse.jgit.pgm.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath ├── .project └── BUILD ├── org.eclipse.jgit.ant ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── ant │ │ └── ant-tasks.properties ├── META-INF │ ├── SOURCE-MANIFEST.MF │ └── MANIFEST.MF ├── build.properties ├── .classpath └── .project ├── org.eclipse.jgit.http.server ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── BUILD ├── .classpath └── .project ├── org.eclipse.jgit.junit.http ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.lfs.server ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── lfs │ │ └── server │ │ └── internal │ │ └── LfsServerText.properties └── .project ├── org.eclipse.jgit.ssh.apache ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── .classpath ├── BUILD └── .project ├── org.eclipse.jgit.test ├── tst-rsrc │ ├── org │ │ └── eclipse │ │ │ └── jgit │ │ │ ├── diff │ │ │ ├── E_PreImage │ │ │ ├── W_PostImage │ │ │ ├── W_PreImage │ │ │ ├── Y_PreImage │ │ │ ├── Z_PostImage │ │ │ ├── E_PostImage │ │ │ ├── M2_PostImage │ │ │ ├── M3_PreImage │ │ │ ├── NonASCIIAdd_PreImage │ │ │ ├── NonASCII_PreImage │ │ │ ├── Y_PostImage │ │ │ ├── Z_PreImage │ │ │ ├── A2_PostImage │ │ │ ├── NonASCII2_PostImage │ │ │ ├── NonASCII2_PreImage │ │ │ ├── NonASCIIAdd2_PostImage │ │ │ ├── NonASCIIAdd_PostImage │ │ │ ├── NonASCIIDel_PreImage │ │ │ ├── NonASCII_PostImage │ │ │ ├── A1_PostImage │ │ │ ├── D_PreImage │ │ │ ├── M1_PostImage │ │ │ ├── M2_PreImage │ │ │ ├── M3_PostImage │ │ │ ├── NL1_PostImage │ │ │ ├── NL1_PreImage │ │ │ ├── F1.patch │ │ │ ├── .gitattributes │ │ │ ├── E.patch │ │ │ ├── F2.patch │ │ │ ├── W.patch │ │ │ ├── Y.patch │ │ │ ├── Z.patch │ │ │ ├── A1.patch │ │ │ ├── D.patch │ │ │ ├── M1.patch │ │ │ ├── NL1.patch │ │ │ ├── M2.patch │ │ │ ├── M3.patch │ │ │ ├── A1_sub.patch │ │ │ ├── NonASCII.patch │ │ │ ├── F1_PreImage │ │ │ ├── F2_PreImage │ │ │ ├── X_PreImage │ │ │ ├── A2.patch │ │ │ ├── NonASCIIAdd.patch │ │ │ ├── X_PostImage │ │ │ ├── NonASCIIAdd2.patch │ │ │ ├── NonASCII2.patch │ │ │ ├── NonASCIIDel.patch │ │ │ ├── testContext0.out │ │ │ ├── X.patch │ │ │ ├── testContext1.out │ │ │ ├── testContext3.out │ │ │ ├── testContext5.out │ │ │ ├── testContext10.out │ │ │ └── testContext100.out │ │ │ ├── patch │ │ │ ├── .gitattributes │ │ │ ├── testGetText_Convert.patch │ │ │ ├── testGetText_DiffCc.patch │ │ │ ├── testGetText_BothISO88591.patch │ │ │ ├── testGetText_NoBinary.patch │ │ │ ├── testEditList_Types.patch │ │ │ ├── testParse_CcDeleteFile.patch │ │ │ ├── testParse_CcNewFile.patch │ │ │ ├── testParse_FixNoNewline.patch │ │ │ ├── testParse_AddNoNewline.patch │ │ │ ├── testError_GitBinaryNoForwardHunk.patch │ │ │ ├── testParse_GitBinaryDelta.patch │ │ │ ├── testError_CcTruncatedOld.patch │ │ │ ├── testError_TruncatedNew.patch │ │ │ ├── testParse_OneFileCc.patch │ │ │ ├── testError_TruncatedOld.patch │ │ │ └── testError_BodyTooLong.patch │ │ │ ├── test │ │ │ └── resources │ │ │ │ ├── excludeTest │ │ │ │ └── src │ │ │ │ │ ├── test.stp │ │ │ │ │ └── .gitignore │ │ │ │ ├── gitgit.index │ │ │ │ ├── pack-huge.idx │ │ │ │ ├── gitgit.index.v3 │ │ │ │ ├── gitgit.index.ZZZZ │ │ │ │ ├── gitgit.index.aaaa │ │ │ │ ├── gitgit.index.badchecksum │ │ │ │ ├── dircache.testRemovedSubtree │ │ │ │ ├── pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.idx │ │ │ │ ├── pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idx │ │ │ │ ├── pack-546ff360fe3488adb20860ce3436a2d6373d2796.idx │ │ │ │ ├── pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.idx │ │ │ │ ├── pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.idx │ │ │ │ ├── pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idx │ │ │ │ ├── pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.idx │ │ │ │ ├── pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.pack │ │ │ │ ├── pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idxV2 │ │ │ │ ├── pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.pack │ │ │ │ ├── pack-546ff360fe3488adb20860ce3436a2d6373d2796.pack │ │ │ │ ├── pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.pack │ │ │ │ ├── pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.pack │ │ │ │ ├── pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idxV2 │ │ │ │ ├── pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.pack │ │ │ │ └── pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.pack │ │ │ ├── nls │ │ │ ├── GermanTranslatedBundle.properties │ │ │ ├── MissingPropertyBundle.properties │ │ │ ├── NonTranslatedBundle.properties │ │ │ └── GermanTranslatedBundle_de.properties │ │ │ ├── internal │ │ │ └── transport │ │ │ │ └── http │ │ │ │ ├── cookies-invalid.txt │ │ │ │ ├── cookies-simple1.txt │ │ │ │ ├── cookies-simple2.txt │ │ │ │ └── cookies-with-empty-and-comment-lines.txt │ │ │ ├── util │ │ │ └── sha1 │ │ │ │ ├── shattered-1.pdf │ │ │ │ └── shattered-2.pdf │ │ │ ├── attributes │ │ │ └── merge │ │ │ │ ├── enabled_checked.gif │ │ │ │ └── disabled_checked.gif │ │ │ └── indexdiff │ │ │ └── filerepo.txt │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.jgit.transport.Transport │ ├── log4j.properties │ ├── jgit-s3-connection-v-0.properties │ ├── jgit-s3-connection-v-1.properties │ ├── jgit-s3-config.policy.bucket.json │ └── jgit-s3-config.policy.user.json ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ ├── org.eclipse.mylyn.tasks.ui.prefs │ └── org.eclipse.core.resources.prefs ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── transport │ │ └── ssh │ │ ├── id_ed25519.pub │ │ ├── id_ed25519_testpass.pub │ │ ├── id_ed25519_expensive_testpass.pub │ │ ├── id_ecdsa_256.pub │ │ ├── id_ecdsa_256_testpass.pub │ │ ├── id_ecdsa_384.pub │ │ ├── id_ecdsa_384_testpass.pub │ │ ├── id_rsa_1024.pub │ │ ├── id_rsa_1024_testpass.pub │ │ ├── id_ecdsa_256 │ │ ├── id_ecdsa_521.pub │ │ ├── id_ecdsa_521_testpass.pub │ │ ├── id_ecdsa_384 │ │ ├── id_ecdsa_256_testpass │ │ ├── id_ecdsa_521 │ │ ├── id_rsa_2048.pub │ │ ├── id_rsa_2048_testpass.pub │ │ ├── id_ed25519 │ │ ├── id_ecdsa_384_testpass │ │ ├── id_ed25519_testpass │ │ ├── id_ed25519_expensive_testpass │ │ ├── id_ecdsa_521_testpass │ │ ├── id_rsa_3072.pub │ │ ├── id_rsa_3072_testpass.pub │ │ ├── id_dsa.pub │ │ ├── id_dsa_testpass.pub │ │ ├── id_dsa │ │ ├── id_rsa_4096.pub │ │ ├── id_rsa_4096_testpass.pub │ │ ├── id_dsa_testpass │ │ ├── id_rsa_1024 │ │ └── id_rsa_1024_testpass ├── tst │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── lib │ │ ├── empty.gitindex.dat │ │ └── sorttest.gitindex.dat ├── build.properties ├── .project └── .classpath ├── org.eclipse.jgit.ant.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath ├── META-INF │ └── MANIFEST.MF └── .project ├── org.eclipse.jgit.http.apache ├── .gitignore ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── plugin.properties ├── resources │ └── org │ │ └── eclipse │ │ └── jgit │ │ └── transport │ │ └── http │ │ └── apache │ │ └── internal │ │ └── HttpApacheText.properties ├── build.properties ├── META-INF │ └── SOURCE-MANIFEST.MF ├── BUILD ├── .classpath └── .project ├── org.eclipse.jgit.lfs.server.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath └── .project ├── org.eclipse.jgit.ssh.apache.test ├── .gitignore ├── plugin.properties ├── .settings │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.pde.core.prefs │ ├── org.eclipse.mylyn.team.ui.prefs │ └── org.eclipse.mylyn.tasks.ui.prefs ├── build.properties ├── .classpath ├── BUILD ├── .project └── META-INF │ └── MANIFEST.MF ├── org.eclipse.jgit.packaging ├── org.eclipse.jgit.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.lfs.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.pgm.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.repository │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ └── .project ├── org.eclipse.jgit.junit.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.source.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.http.apache.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.ssh.apache.feature │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.mylyn.team.ui.prefs │ │ └── org.eclipse.mylyn.tasks.ui.prefs │ ├── build.properties │ └── .project ├── org.eclipse.jgit.target │ ├── jgit-4.6.tpd │ ├── jgit-4.9.tpd │ ├── jgit-4.10.tpd │ ├── jgit-4.11.tpd │ ├── jgit-4.7.tpd │ ├── jgit-4.8.tpd │ ├── jgit-4.12-staging.tpd │ └── .project └── .project ├── .gitignore ├── .bazelrc ├── tools ├── git.defs ├── bazlets.bzl ├── default.defs └── release.sh └── BUILD /.bazelversion: -------------------------------------------------------------------------------- 1 | 0.26.1 2 | -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- 1 | -Xmx1024m -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -T 1C 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.java diff=java 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /bin 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /bin 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | target/ 3 | tmp/ 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/E_PreImage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | target/ 3 | tmp/ 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | target/ 3 | 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /bin 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target 3 | /bin-tst/ 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/W_PostImage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/W_PreImage: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Y_PreImage: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Z_PostImage: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/E_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M2_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M3_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIAdd_PreImage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII_PreImage: -------------------------------------------------------------------------------- 1 | あ -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Y_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Z_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/A2_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII2_PostImage: -------------------------------------------------------------------------------- 1 | 再见 -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII2_PreImage: -------------------------------------------------------------------------------- 1 | 你好, 世界! -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIAdd2_PostImage: -------------------------------------------------------------------------------- 1 | あ -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIAdd_PostImage: -------------------------------------------------------------------------------- 1 | あ -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIDel_PreImage: -------------------------------------------------------------------------------- 1 | あ -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII_PostImage: -------------------------------------------------------------------------------- 1 | あ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/A1_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/D_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M1_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M2_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M3_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/.gitattributes: -------------------------------------------------------------------------------- 1 | *.patch -crlf 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/excludeTest/src/test.stp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NL1_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | d 3 | c 4 | 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NL1_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Core 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Core Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit HTTP Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit LFS Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/F1.patch: -------------------------------------------------------------------------------- 1 | @@ -2,2 +2,3 @@ a 2 | b 3 | +c 4 | d 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit AWT User Interface 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Ant Tasks Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Archive Formats 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit HTTP Server 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Large File Storage 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Command Line Interface 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle.properties: -------------------------------------------------------------------------------- 1 | goodMorning=Good morning {0} -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/MissingPropertyBundle.properties: -------------------------------------------------------------------------------- 1 | goodMorning=Good morning {0} -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/NonTranslatedBundle.properties: -------------------------------------------------------------------------------- 1 | goodMorning=Good morning {0} -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit JUnit Utility Classes 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/.gitattributes: -------------------------------------------------------------------------------- 1 | *.patch -crlf 2 | *Image -crlf 3 | *.out -crlf 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle_de.properties: -------------------------------------------------------------------------------- 1 | goodMorning=Guten Morgen {0} -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit JUnit Ssh Utility Classes 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit LFS Server Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Large File Storage Server 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | resolve.requirebundle=false 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit JUnit Http Utility Classes 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | resolve.requirebundle=false 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Command Line Interface Tests 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.coverage/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | resolve.requirebundle=false 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | resolve.requirebundle=false 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit Tests for SSH with Apache MINA sshd 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/plugin.properties: -------------------------------------------------------------------------------- 1 | Bundle-Name=JGit SSH support based on Apache MINA sshd 2 | Bundle-Vendor=Eclipse JGit 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/internal/transport/http/cookies-invalid.txt: -------------------------------------------------------------------------------- 1 | some-domain /some/path1 FALSE 0 key1 value1 -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/excludeTest/src/.gitignore: -------------------------------------------------------------------------------- 1 | /*.st? 2 | !/test.stp 3 | !/a.c 4 | /a.c 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Utility classes. 3 | */ 4 | package org.eclipse.jgit.util; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/fnmatch/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * File name matcher. 3 | */ 4 | package org.eclipse.jgit.fnmatch; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.eclipse.jgit.ant 2 | Bundle-Name = JGit Ant Tasks 3 | Bundle-Vendor = Eclipse JGit -------------------------------------------------------------------------------- /org.eclipse.jgit/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Internal classes. 3 | */ 4 | package org.eclipse.jgit.internal; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/nls/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Native language support (i18n). 3 | */ 4 | package org.eclipse.jgit.nls; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/submodule/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Git submodule support. 3 | */ 4 | package org.eclipse.jgit.submodule; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Sat Feb 12 08:36:17 PST 2011 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/events/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Events and listener interfaces. 3 | */ 4 | package org.eclipse.jgit.events; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/fsck/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Git fsck support. 3 | */ 4 | package org.eclipse.jgit.internal.fsck; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/patch/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Patch file parser and data structure. 3 | */ 4 | package org.eclipse.jgit.patch; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/util/io/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Utility classes for IO (streams). 3 | */ 4 | package org.eclipse.jgit.util.io; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Sat Feb 12 08:36:17 PST 2011 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:50 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:56 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/diff/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Comparing file contents by computing diffs. 3 | */ 4 | package org.eclipse.jgit.diff; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/notes/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Git notes processing (for commits, etc). 3 | */ 4 | package org.eclipse.jgit.notes; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/revplot/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Building/rendering revision graphs. 3 | */ 4 | package org.eclipse.jgit.revplot; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.coverage/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Sat Feb 12 08:36:17 PST 2011 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:12 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/E.patch: -------------------------------------------------------------------------------- 1 | diff --git a/E b/E 2 | index e69de29..7898192 100644 3 | --- a/E 4 | +++ b/E 5 | @@ -0,0 +1 @@ 6 | +a 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/api/errors/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Exceptions thrown by API commands. 3 | */ 4 | package org.eclipse.jgit.api.errors; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/api/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * High-level API commands (the porcelain of JGit). 3 | */ 4 | package org.eclipse.jgit.api; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/attributes/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Support for reading .gitattributes. 3 | */ 4 | package org.eclipse.jgit.attributes; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/blame/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Computing blame/annotate information of files. 3 | */ 4 | package org.eclipse.jgit.blame; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/errors/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Exceptions thrown by lower-level JGit APIs. 3 | */ 4 | package org.eclipse.jgit.errors; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/merge/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Content and commit history merge algorithms. 3 | */ 4 | package org.eclipse.jgit.merge; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/revwalk/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Walking revision graphs (commit history). 3 | */ 4 | package org.eclipse.jgit.revwalk; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:29 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 14 14:34:32 CST 2010 2 | eclipse.preferences.version=1 3 | resolve.requirebundle=false 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519.pub: -------------------------------------------------------------------------------- 1 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgmWtbxcHjqIBVjRepuNgobzAn3mIgvE5vk41CEUG89 testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/lib/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Core API for repository, config, refs, object database. 3 | */ 4 | package org.eclipse.jgit.lib; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Filters for use in tree walking. 3 | */ 4 | package org.eclipse.jgit.treewalk.filter; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/dircache/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Reading and editing the directory cache (index). 3 | */ 4 | package org.eclipse.jgit.dircache; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/ignore/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Ignore rule parser/matcher (for .gitignore entries). 3 | */ 4 | package org.eclipse.jgit.ignore; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Filters for use in revision walking. 3 | */ 4 | package org.eclipse.jgit.revwalk.filter; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/transport/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Transport (fetch/push) for different protocols. 3 | */ 4 | package org.eclipse.jgit.transport; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/, src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.properties 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgmWtbxcHjqIBVjRepuNgobzAn3mIgvE5vk41CEUG89 testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/empty.gitindex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/empty.gitindex.dat -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/ketch/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Distributed consensus system built on Git. 3 | */ 4 | package org.eclipse.jgit.internal.ketch; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * File based repository storage. 3 | */ 4 | package org.eclipse.jgit.internal.storage.file; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.eclipse.jgit.http.apache 2 | Bundle-Name = JGit Apache httpclient based HTTP support 3 | Bundle-Vendor = Eclipse JGit -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Mon Mar 24 18:55:44 EDT 2008 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519_expensive_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEZXZRjuttLufaP8wFD/i4lYPnKk01z46Jwv/9U4mPio test 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/sorttest.gitindex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/sorttest.gitindex.dat -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Reading/writing Git pack files. 3 | */ 4 | package org.eclipse.jgit.internal.storage.pack; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | project.repository.kind=bugzilla 3 | project.repository.url=https\://bugs.eclipse.org/bugs 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:08 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/F2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/F2 b/F2 2 | index a3648a1..2d44096 100644 3 | --- a/F2 4 | +++ b/F2 5 | @@ -2,2 +2,3 @@ a 6 | B 7 | +c 8 | d 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/W.patch: -------------------------------------------------------------------------------- 1 | diff --git a/W b/W 2 | index a3648a1..2d44096 100644 3 | --- a/W 4 | +++ b/W 5 | @@ -1 +0,0 @@ 6 | -a 7 | \ No newline at end of file -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/,\ 2 | src/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | project.repository.kind=bugzilla 3 | project.repository.url=https\://bugs.eclipse.org/bugs 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 11 16:46:54 PDT 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | line.separator=\n 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/util/sha1/shattered-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/util/sha1/shattered-1.pdf -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/util/sha1/shattered-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/util/sha1/shattered-2.pdf -------------------------------------------------------------------------------- /org.eclipse.jgit/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/treewalk/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Walking and comparing directory/file trees (of commits, file system). 3 | */ 4 | package org.eclipse.jgit.treewalk; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/resources/org/eclipse/jgit/transport/http/apache/internal/HttpApacheText.properties: -------------------------------------------------------------------------------- 1 | unexpectedSSLContextException=unexpected exception when searching for the TLS protocol 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | project.repository.kind=bugzilla 3 | project.repository.url=https\://bugs.eclipse.org/bugs 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:08 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Y.patch: -------------------------------------------------------------------------------- 1 | diff --git a/Y b/Y 2 | index 2e65efe..7898192 100644 3 | --- a/Y 4 | +++ b/Y 5 | @@ -1 +1 @@ 6 | -a 7 | \ No newline at end of file 8 | +a 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/Z.patch: -------------------------------------------------------------------------------- 1 | diff --git a/Z b/Z 2 | index 7898192..2e65efe 100644 3 | --- a/Z 4 | +++ b/Z 5 | @@ -1 +1 @@ 6 | -a 7 | +a 8 | \ No newline at end of file 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-huge.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-huge.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Distributed file system based repository storage. 3 | */ 4 | package org.eclipse.jgit.internal.storage.dfs; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Server-side resolver for locating repositories by URLs. 3 | */ 4 | package org.eclipse.jgit.transport.resolver; 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | about.html,\ 6 | plugin.properties 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | project.repository.kind=bugzilla 3 | project.repository.url=https\://bugs.eclipse.org/bugs 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 18 23:33:45 CEST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description} \n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/A1.patch: -------------------------------------------------------------------------------- 1 | diff --git a/A1 b/A1 2 | new file mode 100644 3 | index 0000000..de98044 4 | --- /dev/null 5 | +++ b/A1 6 | @@ -0,0 +1,3 @@ 7 | +a 8 | +b 9 | +c -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_Convert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_Convert.patch -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_DiffCc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_DiffCc.patch -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.v3 -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description} \n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.ZZZZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.ZZZZ -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.aaaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.aaaa -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/attributes/merge/enabled_checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/attributes/merge/enabled_checked.gif -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_BothISO88591.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_BothISO88591.patch -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | edl-v10.html,\ 3 | feature.properties,\ 4 | license.html 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/attributes/merge/disabled_checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/attributes/merge/disabled_checked.gif -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/D.patch: -------------------------------------------------------------------------------- 1 | diff --git a/D b/D 2 | deleted file mode 100644 3 | index a3648a1..0000000 4 | --- a/D 5 | +++ /dev/null 6 | @@ -1,3 +0,0 @@ 7 | -a 8 | -b 9 | -c 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M1.patch: -------------------------------------------------------------------------------- 1 | diff --git a/M1 b/M1 2 | new file mode 100755 3 | index 0000000..de98044 4 | --- /dev/null 5 | +++ b/M1 6 | @@ -0,0 +1,3 @@ 7 | +a 8 | +b 9 | +c 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NL1.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NL1 b/NL1 2 | index 68abad7..b14088c 100644 3 | --- a/NL1 4 | +++ b/NL1 5 | @@ -1,4 +1,4 @@ 6 | a 7 | -b 8 | +d 9 | c 10 | 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.badchecksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/gitgit.index.badchecksum -------------------------------------------------------------------------------- /org.eclipse.jgit/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | about.html,\ 7 | plugin.properties -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/,\ 2 | src/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/resources/org/eclipse/jgit/archive/internal/ArchiveText.properties: -------------------------------------------------------------------------------- 1 | cannotSetOption=Cannot set option: {0} 2 | pathDoesNotMatchMode=Path {0} does not match mode {1} 3 | unsupportedMode=Unsupported mode {0} 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/M2 b/M2 2 | old mode 100644 3 | new mode 100755 4 | index 0000000..de98044 5 | --- a/M2 6 | +++ b/M2 7 | @@ -1,3 +1,1 @@ 8 | a 9 | -b 10 | -c 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/M3.patch: -------------------------------------------------------------------------------- 1 | diff --git a/M3 b/M3 2 | old mode 100755 3 | new mode 100644 4 | index 0000000..de98044 5 | --- a/M3 6 | +++ b/M3 7 | @@ -1,1 +1,3 @@ 8 | a 9 | +b 10 | +c 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/dircache.testRemovedSubtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/dircache.testRemovedSubtree -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.properties,\ 4 | META-INF/,\ 5 | . 6 | jre.compilation.profile = JavaSE-1.8 7 | additional.bundles = org.eclipse.jgit 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/A1_sub.patch: -------------------------------------------------------------------------------- 1 | diff --git a/sub/A1 b/sub/A1 2 | new file mode 100644 3 | index 0000000..de98044 4 | --- /dev/null 5 | +++ b/sub/A1 6 | @@ -0,0 +1,3 @@ 7 | +a 8 | +b 9 | +c 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NonASCII b/NonASCII 2 | index 2e65efe..7898192 100644 3 | --- a/NonASCII 4 | +++ b/NonASCII 5 | @@ -1 +1 @@ 6 | -あ 7 | \ No newline at end of file 8 | +あ 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/internal/transport/http/cookies-simple1.txt: -------------------------------------------------------------------------------- 1 | some-domain1 TRUE /some/path1 FALSE 1893499200000 key1 valueFromSimple1 2 | some-domain1 TRUE /some/path1 FALSE 1893499200000 key2 valueFromSimple1 -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/internal/transport/http/cookies-simple2.txt: -------------------------------------------------------------------------------- 1 | some-domain1 TRUE /some/path1 FALSE 1893499200000 key1 valueFromSimple2 2 | some-domain1 TRUE /some/path1 FALSE 1893499200000 key3 valueFromSimple2 -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.settings/org.eclipse.mylyn.team.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | commit.comment.template=${task.description}\n\nBug\: ${task.key} 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/F1_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | d 4 | e 5 | f 6 | g 7 | h 8 | i 9 | j 10 | k 11 | l 12 | m 13 | n 14 | o 15 | p 16 | q 17 | r 18 | s 19 | t 20 | u 21 | v 22 | w 23 | x 24 | y 25 | z 26 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/F2_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | d 4 | e 5 | f 6 | g 7 | h 8 | i 9 | j 10 | k 11 | l 12 | m 13 | n 14 | o 15 | p 16 | q 17 | r 18 | s 19 | t 20 | u 21 | v 22 | w 23 | x 24 | y 25 | z 26 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/X_PreImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | d 4 | e 5 | f 6 | g 7 | h 8 | i 9 | j 10 | k 11 | l 12 | m 13 | n 14 | o 15 | p 16 | q 17 | r 18 | s 19 | t 20 | u 21 | v 22 | w 23 | x 24 | y 25 | z 26 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/,\ 3 | / 4 | output.. = bin/ 5 | bin.includes = META-INF/,\ 6 | .,\ 7 | plugin.properties,\ 8 | about.html 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/A2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/A2 b/A2 2 | new file mode 100644 3 | index 0000000..de98044 4 | --- /dev/null 5 | +++ b/A2 6 | @@ -0,0 +1,3 @@ 7 | +a 8 | +b 9 | +c 10 | \ No newline at end of file -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIAdd.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NonASCIIAdd b/NonASCIIAdd 2 | index 2e65efe..7898192 100644 3 | --- a/NonASCIIAdd 4 | +++ b/NonASCIIAdd 5 | @@ -0,0 +1 @@ 6 | +あ 7 | \ No newline at end of file 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_256.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKEB01FsLt5yZwh3kr92BOfVMX7hjYwFy8ytDIw8KF7ev6nj44ygEHoR3QCGEB6/c2CbuUgOW/Ohy+YJao3Mvj4= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_256_testpass.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKEB01FsLt5yZwh3kr92BOfVMX7hjYwFy8ytDIw8KF7ev6nj44ygEHoR3QCGEB6/c2CbuUgOW/Ohy+YJao3Mvj4= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/META-INF/services/org.eclipse.jgit.transport.Transport: -------------------------------------------------------------------------------- 1 | # Comment at beginning 2 | org.eclipse.jgit.transport.SpiTransport # spi 3 | # Comment after just whitespace 4 | org.eclipse.jgit.transport.MissingTransport 5 | 6 | 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/X_PostImage: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | f 7 | g 8 | h 9 | i 10 | j 11 | k 12 | l 13 | m 14 | n 15 | o 16 | p 17 | q 18 | t 19 | u 20 | v 21 | w 22 | 0 23 | 1 24 | 2 25 | 3 26 | 4 27 | 5 28 | z 29 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.settings/org.eclipse.mylyn.tasks.ui.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jul 19 20:11:28 CEST 2011 2 | eclipse.preferences.version=1 3 | project.repository.kind=bugzilla 4 | project.repository.url=https\://bugs.eclipse.org/bugs 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIAdd2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NonASCIIAdd2 b/NonASCIIAdd2 2 | new file mode 100644 3 | index 2e65efe..7898192 100644 4 | --- /dev/null 5 | +++ b/NonASCIIAdd2 6 | @@ -0,0 +1 @@ 7 | +あ 8 | \ No newline at end of file 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-546ff360fe3488adb20860ce3436a2d6373d2796.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-546ff360fe3488adb20860ce3436a2d6373d2796.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.idx -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-3280af9c07ee18a87705ef50b0cc4cd20266cf12.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idxV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.idxV2 -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-546ff360fe3488adb20860ce3436a2d6373d2796.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-546ff360fe3488adb20860ce3436a2d6373d2796.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-cbdeda40019ae0e6e789088ea0f51f164f489d14.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idxV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.idxV2 -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding/jgit/master/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa.pack -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/resources/org/eclipse/jgit/ant/ant-tasks.properties: -------------------------------------------------------------------------------- 1 | git-init=org.eclipse.jgit.ant.tasks.GitInitTask 2 | git-clone=org.eclipse.jgit.ant.tasks.GitCloneTask 3 | git-checkout=org.eclipse.jgit.ant.tasks.GitCheckoutTask 4 | git-add=org.eclipse.jgit.ant.tasks.GitAddTask 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCII2.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NonASCII2 b/NonASCII2 2 | index 2e65efe..7898192 100644 3 | --- a/NonASCII2 4 | +++ b/NonASCII2 5 | @@ -1 +1 @@ 6 | -你好, 世界! 7 | \ No newline at end of file 8 | +再见 9 | \ No newline at end of file 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.6.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.6" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/neon/" { 7 | org.eclipse.osgi lazy 8 | } -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_384.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBCEmsn68ktuRt30LWF77he7Fo7JnUipgmrM9kJdwqQiWDL7QjTtEDFFR3vkYcpzhWLJScurmh1XbkfoU3Mckc7uJ8TgfqOsSkD9QvouR9lF5hniw2Z5AjswFebYhdCwhng== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.9.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.9" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/2018-09/" { 7 | org.eclipse.osgi lazy 8 | } -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.10.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.10" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/2018-12/" { 7 | org.eclipse.osgi lazy 8 | } 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.11.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.11" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/2019-03/" { 7 | org.eclipse.osgi lazy 8 | } 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.7.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.7" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/oxygen/" { 7 | org.eclipse.osgi lazy 8 | } 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.8.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.8" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/releases/photon/" { 7 | org.eclipse.osgi lazy 8 | } 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_384_testpass.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBCEmsn68ktuRt30LWF77he7Fo7JnUipgmrM9kJdwqQiWDL7QjTtEDFFR3vkYcpzhWLJScurmh1XbkfoU3Mckc7uJ8TgfqOsSkD9QvouR9lF5hniw2Z5AjswFebYhdCwhng== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_1024.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDGfj0Jmqj+CUb+WdFrlkRV49TJtNzvvMb/nX20zqgGm50cOIYrMzfFpSQN630pXeAidIgiV/PWAsipntQfSWPRG+RpB/wMKHVUNPJCJkjjRFEa56YxgAhgNwF511K13x4p2tEN0r6wsfw1nos9VoO8XDBAu3lellAgBdufyCt8vw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/NonASCIIDel.patch: -------------------------------------------------------------------------------- 1 | diff --git a/NonASCIIDel b/NonASCIIDel 2 | deleted file mode 100644 3 | new file mode 100644 4 | index 2e65efe..7898192 100644 5 | --- a/NonASCIIDel 6 | +++ /dev/null 7 | @@ -1 +0,0 @@ 8 | -あ 9 | \ No newline at end of file 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext0.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -2,0 +3 @@ 6 | +c 7 | @@ -17,2 +17,0 @@ 8 | -r 9 | -s 10 | @@ -23,2 +22,6 @@ 11 | -x 12 | -y 13 | +0 14 | +1 15 | +2 16 | +3 17 | +4 18 | +5 19 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_1024_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDGfj0Jmqj+CUb+WdFrlkRV49TJtNzvvMb/nX20zqgGm50cOIYrMzfFpSQN630pXeAidIgiV/PWAsipntQfSWPRG+RpB/wMKHVUNPJCJkjjRFEa56YxgAhgNwF511K13x4p2tEN0r6wsfw1nos9VoO8XDBAu3lellAgBdufyCt8vw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.12-staging.tpd: -------------------------------------------------------------------------------- 1 | target "jgit-4.12-staging" with source configurePhase 2 | 3 | include "projects/jetty-9.4.14.tpd" 4 | include "orbit/R20190602212107-2019-06.tpd" 5 | 6 | location "http://download.eclipse.org/staging/2019-06/" { 7 | org.eclipse.osgi lazy 8 | } 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_256: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MHcCAQEEIAqXVKoLNr7/wNluxmGZnZmJCD/5h06ptAICRk+8FIjfoAoGCCqGSM49 3 | AwEHoUQDQgAEoQHTUWwu3nJnCHeSv3YE59UxfuGNjAXLzK0MjDwoXt6/qePjjKAQ 4 | ehHdAIYQHr9zYJu5SA5b86HL5glqjcy+Pg== 5 | -----END EC PRIVATE KEY----- 6 | -------------------------------------------------------------------------------- /org.eclipse.jgit/resources/org/eclipse/jgit/internal/storage/dfs/DfsText.properties: -------------------------------------------------------------------------------- 1 | cannotReadIndex=Cannot read index {0} 2 | shortReadOfBlock=Short read of block at {0} in pack {1}; expected {2} bytes, received only {3} 3 | shortReadOfIndex=Short read of index {0} 4 | willNotStoreEmptyPack=Cannot store empty pack 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testGetText_NoBinary.patch: -------------------------------------------------------------------------------- 1 | diff --git a/org.spearce.egit.ui/icons/toolbar/fetchd.png b/org.spearce.egit.ui/icons/toolbar/fetchd.png 2 | new file mode 100644 3 | index 0000000..4433c54 4 | Binary files /dev/null and b/org.spearce.egit.ui/icons/toolbar/fetchd.png differ 5 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "ui", 5 | srcs = glob(["src/**/*.java"]), 6 | resource_strip_prefix = "org.eclipse.jgit.ui/resources", 7 | resources = glob(["resources/**"]), 8 | deps = ["//org.eclipse.jgit:jgit"], 9 | ) 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/resources/org/eclipse/jgit/awtui/UIText.properties: -------------------------------------------------------------------------------- 1 | authenticationRequired=Authentication Required 2 | author=Author 3 | date=Date 4 | enterUsernameAndPasswordFor=Enter username and password for 5 | mustBeSpecialTableModel=Must be special table model. 6 | password=Password: 7 | username=Username: 8 | warning=Warning 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /target 3 | infer-out 4 | bazel-* 5 | 6 | # Do not add editor- and OS-specific files like *~ (Emacs) and .DS_Store 7 | # (macOS). Instead, add them to $XDG_CONFIG_HOME/git/ignore 8 | # (~/.config/git/ignore if $XDG_CONFIG_HOME is not set) or 9 | # $GIT_DIR/info/exclude. See "git help gitignore" for details. 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=WARN, stderr 2 | 3 | log4j.appender.stderr=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stderr.Target=System.err 5 | log4j.appender.stderr.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.stderr.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_521.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAChltEMzT8dXwIhQD2iuy7QbaBkhWMhpFaxztvzSQqoTZvBgBsOmSr9frFA93lSQoHD1BgewuwBkNGm9lRcw0tEgABqifONkj07Qj2847MKS1iiVu1sHh7Ys3YimyfJc+nZRNi+W03nkcdvWd6PP8y/VENoV7+BtIO9txj8Dt5LYOtFgw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- 1 | build --repository_cache=~/.gerritcodereview/bazel-cache/repository 2 | build --experimental_strict_action_env 3 | build --action_env=PATH 4 | build --disk_cache=~/.gerritcodereview/bazel-cache/cas 5 | build --java_toolchain //tools:error_prone_warnings_toolchain 6 | 7 | test --build_tests_only 8 | test --test_output=errors 9 | 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_521_testpass.pub: -------------------------------------------------------------------------------- 1 | ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAChltEMzT8dXwIhQD2iuy7QbaBkhWMhpFaxztvzSQqoTZvBgBsOmSr9frFA93lSQoHD1BgewuwBkNGm9lRcw0tEgABqifONkj07Qj2847MKS1iiVu1sHh7Ys3YimyfJc+nZRNi+W03nkcdvWd6PP8y/VENoV7+BtIO9txj8Dt5LYOtFgw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/X.patch: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -2,2 +2,3 @@ a 6 | b 7 | +c 8 | d 9 | @@ -16,4 +17,2 @@ p 10 | q 11 | -r 12 | -s 13 | t 14 | @@ -22,4 +21,8 @@ v 15 | w 16 | -x 17 | -y 18 | +0 19 | +1 20 | +2 21 | +3 22 | +4 23 | +5 24 | z 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext1.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -2,2 +2,3 @@ 6 | b 7 | +c 8 | d 9 | @@ -16,4 +17,2 @@ 10 | q 11 | -r 12 | -s 13 | t 14 | @@ -22,4 +21,8 @@ 15 | w 16 | -x 17 | -y 18 | +0 19 | +1 20 | +2 21 | +3 22 | +4 23 | +5 24 | z 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.ui - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.ui.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.ui;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.ant - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.ant.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.ant;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.lfs - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.lfs.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.lfs;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.pgm - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.pgm.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.pgm;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /tools/git.defs: -------------------------------------------------------------------------------- 1 | def git_version(): 2 | import subprocess 3 | cmd = ['git', 'describe', '--always', '--match', 'v[0-9].*', '--dirty'] 4 | p = subprocess.Popen(cmd, stdout = subprocess.PIPE) 5 | v = p.communicate()[0].strip() 6 | r = p.returncode 7 | if r != 0: 8 | raise subprocess.CalledProcessError(r, ' '.join(cmd)) 9 | return v 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | resources/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | additional.bundles = org.apache.ant,\ 9 | org.eclipse.jgit,\ 10 | org.eclipse.jgit.pgm 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.junit - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.junit.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.junit;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testEditList_Types.patch: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -2,2 +2,3 @@ a 6 | b 7 | +c 8 | d 9 | @@ -16,4 +17,2 @@ p 10 | q 11 | -r 12 | -s 13 | t 14 | @@ -22,4 +21,8 @@ v 15 | w 16 | -x 17 | -y 18 | +0 19 | +1 20 | +2 21 | +3 22 | +4 23 | +5 24 | z 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.archive - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.archive.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.archive;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.junit.ssh - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.junit.ssh.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.junit.ssh;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_384: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MIGkAgEBBDAgAgPcgkPaitxOrphrrLe+am0eUhYi346UUTnb5WZL3164MEjFByd9 3 | Egv6KwB4hCqgBwYFK4EEACKhZANiAAQhJrJ+vJLbkbd9C1he+4XuxaOyZ1IqYJqz 4 | PZCXcKkIlgy+0I07RAxRUd75GHKc4ViyUnLq5odV25H6FNzHJHO7ifE4H6jrEpA/ 5 | UL6LkfZReYZ4sNmeQI7MBXm2IXQsIZ4= 6 | -----END EC PRIVATE KEY----- 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.junit.http - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.junit.http.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.junit.http;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.lfs.server - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.lfs.server.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.lfs.server;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.ssh.apache - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.ssh.apache.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.ssh.apache;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext3.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -1,5 +1,6 @@ 6 | a 7 | b 8 | +c 9 | d 10 | e 11 | f 12 | @@ -14,12 +15,14 @@ 13 | o 14 | p 15 | q 16 | -r 17 | -s 18 | t 19 | u 20 | v 21 | w 22 | -x 23 | -y 24 | +0 25 | +1 26 | +2 27 | +3 28 | +4 29 | +5 30 | z 31 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.http.apache - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.http.apache.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.http.apache;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/META-INF/SOURCE-MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: org.eclipse.jgit.http.server - Sources 4 | Bundle-SymbolicName: org.eclipse.jgit.http.server.source 5 | Bundle-Vendor: Eclipse.org - JGit 6 | Bundle-Version: 5.5.0.qualifier 7 | Eclipse-SourceBundle: org.eclipse.jgit.http.server;version="5.5.0.qualifier";roots="." 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "jgit-lfs", 5 | srcs = glob(["src/**/*.java"]), 6 | resource_strip_prefix = "org.eclipse.jgit.lfs/resources", 7 | resources = glob(["resources/**"]), 8 | deps = [ 9 | "//lib:gson", 10 | "//org.eclipse.jgit:jgit", 11 | ], 12 | ) 13 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = tst/,\ 2 | tst-rsrc/,\ 3 | exttst/,\ 4 | src/,\ 5 | resources/ 6 | bin.includes = META-INF/,\ 7 | .,\ 8 | plugin.properties,\ 9 | bin-tst/,\ 10 | bin/ 11 | additional.bundles = org.apache.log4j,\ 12 | org.slf4j.impl.log4j12 13 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 20 21:21:24 CET 2008 2 | eclipse.preferences.version=1 3 | encoding//tst-rsrc/org/eclipse/jgit/patch/testGetText_BothISO88591.patch=ISO-8859-1 4 | encoding//tst-rsrc/org/eclipse/jgit/patch/testGetText_Convert.patch=ISO-8859-1 5 | encoding//tst-rsrc/org/eclipse/jgit/patch/testGetText_DiffCc.patch=ISO-8859-1 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/log4j.properties: -------------------------------------------------------------------------------- 1 | 2 | # Root logger option 3 | log4j.rootLogger=INFO, stdout 4 | 5 | # Direct log messages to stdout 6 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 7 | log4j.appender.stdout.Target=System.out 8 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 9 | log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext5.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -1,7 +1,8 @@ 6 | a 7 | b 8 | +c 9 | d 10 | e 11 | f 12 | g 13 | h 14 | @@ -12,14 +13,16 @@ 15 | m 16 | n 17 | o 18 | p 19 | q 20 | -r 21 | -s 22 | t 23 | u 24 | v 25 | w 26 | -x 27 | -y 28 | +0 29 | +1 30 | +2 31 | +3 32 | +4 33 | +5 34 | z 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_CcDeleteFile.patch: -------------------------------------------------------------------------------- 1 | commit 740709ece2412856c0c3eabd4dc4a4cf115b0de6 2 | Merge: 5c19b43... 13a2c0d... 3 | Author: Shawn O. Pearce 4 | Date: Fri Dec 12 13:26:52 2008 -0800 5 | 6 | Merge branch 'b' into d 7 | 8 | diff --cc a 9 | index 7898192,2e65efe..0000000 10 | deleted file mode 100644,100644 11 | --- a/a 12 | +++ /dev/null 13 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_256_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | Proc-Type: 4,ENCRYPTED 3 | DEK-Info: AES-128-CBC,86940587F5C93441B585F469FF31AC06 4 | 5 | LaIyzOCeBPJA6OkFOFnFfVorYO+Rm1g5QpvqEcFZ+FCuEvhMZN00NMZ5hHKvwQLt 6 | XSK5Se8MUD+e6qFH/ZcoYTixUqYjYJlOkxJzKaXg5nM82wQHa1LqQqcL4IDrJmzv 7 | qJbCLtl6XOfkQQUA6gezqhtiNYWLDZIPfZ0dsaIB/fU= 8 | -----END EC PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext10.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -1,25 +1,28 @@ 6 | a 7 | b 8 | +c 9 | d 10 | e 11 | f 12 | g 13 | h 14 | i 15 | j 16 | k 17 | l 18 | m 19 | n 20 | o 21 | p 22 | q 23 | -r 24 | -s 25 | t 26 | u 27 | v 28 | w 29 | -x 30 | -y 31 | +0 32 | +1 33 | +2 34 | +3 35 | +4 36 | +5 37 | z 38 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/testContext100.out: -------------------------------------------------------------------------------- 1 | diff --git a/X b/X 2 | index a3648a1..2d44096 100644 3 | --- a/X 4 | +++ b/X 5 | @@ -1,25 +1,28 @@ 6 | a 7 | b 8 | +c 9 | d 10 | e 11 | f 12 | g 13 | h 14 | i 15 | j 16 | k 17 | l 18 | m 19 | n 20 | o 21 | p 22 | q 23 | -r 24 | -s 25 | t 26 | u 27 | v 28 | w 29 | -x 30 | -y 31 | +0 32 | +1 33 | +2 34 | +3 35 | +4 36 | +5 37 | z 38 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "http-apache", 5 | srcs = glob(["src/**/*.java"]), 6 | resource_strip_prefix = "org.eclipse.jgit.http.apache/resources", 7 | resources = glob(["resources/**"]), 8 | deps = [ 9 | "//lib:httpclient", 10 | "//lib:httpcore", 11 | "//org.eclipse.jgit:jgit", 12 | ], 13 | ) 14 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_CcNewFile.patch: -------------------------------------------------------------------------------- 1 | commit 6cb8160a4717d51fd3cc0baf721946daa60cf921 2 | Merge: 5c19b43... 13a2c0d... 3 | Author: Shawn O. Pearce 4 | Date: Fri Dec 12 13:26:52 2008 -0800 5 | 6 | Merge branch 'b' into d 7 | 8 | diff --cc d 9 | index 0000000,0000000..4bcfe98 10 | new file mode 100644 11 | --- /dev/null 12 | +++ b/d 13 | @@@ -1,0 -1,0 +1,1 @@@ 14 | ++d 15 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_521: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | MIHcAgEBBEIB4zI/MCFSfJ0wfyLwZPxG1vP2o3fF7fEuOTpK+fxbDHKYz6r4bNv3 3 | HkPQEVTIAqDl7r5Ebcx0BMeYr9oe69tPZIigBwYFK4EEACOhgYkDgYYABAChltEM 4 | zT8dXwIhQD2iuy7QbaBkhWMhpFaxztvzSQqoTZvBgBsOmSr9frFA93lSQoHD1Bge 5 | wuwBkNGm9lRcw0tEgABqifONkj07Qj2847MKS1iiVu1sHh7Ys3YimyfJc+nZRNi+ 6 | W03nkcdvWd6PP8y/VENoV7+BtIO9txj8Dt5LYOtFgw== 7 | -----END EC PRIVATE KEY----- 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_2048.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWwURaIinxJU7z+wOEonrs7u1B20PCypaL0Wbbfy0C7Lbo4f7KWKt5f+pVyd1TxivSphKFzCWgRRp417vtWB99lrZkhR57vm7y75YYJiN5rhFDVtm0NyKhaTGX7Fh9W64poDwJCfjtdR3KgD/k/cOkOFomXwp69pi6kk0c6j0u3YTl1VP3c6SxkE5DoTec2Wx58/+GcUHKJzOV17YYhc/axYujGyJWxsj4It4a3FDE+5tf3K69auX+e//IRFHlkE4RVjk3b7UF1PsO84gyDarrQWkm/rNmlCLs6/WI40xVp/K0hFYxras+SlLzcRvGHlz3ZPeuAtR/kNxmMq8GDG2n testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/internal/transport/http/cookies-with-empty-and-comment-lines.txt: -------------------------------------------------------------------------------- 1 | # first line is a comment 2 | # the next cookie is supposed to be removed, because it has expired already 3 | some-domain1 TRUE /some/path1 FALSE 0 key1 value1 4 | 5 | # expires date is 01/01/2030 @ 12:00am (UTC) 6 | #HttpOnly_.some-domain2 TRUE /some/path2 TRUE 1893499200000 key2 value2 7 | 8 | some-domain3 TRUE /some/path3 FALSE 1893499200000 key3 value3 -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "jgit-servlet", 5 | srcs = glob(["src/**/*.java"]), 6 | resource_strip_prefix = "org.eclipse.jgit.http.server/resources", 7 | resources = glob(["resources/**"]), 8 | deps = [ 9 | "//lib:servlet-api", 10 | # We want these deps to be provided_deps 11 | "//org.eclipse.jgit:jgit", 12 | ], 13 | ) 14 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "junit", 5 | testonly = 1, 6 | srcs = glob(["src/**/*.java"]), 7 | resource_strip_prefix = "org.eclipse.jgit.junit/resources", 8 | resources = glob(["resources/**"]), 9 | deps = [ 10 | "//lib:junit", 11 | # We want these deps to be provided_deps 12 | "//org.eclipse.jgit:jgit", 13 | ], 14 | ) 15 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_2048_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWwURaIinxJU7z+wOEonrs7u1B20PCypaL0Wbbfy0C7Lbo4f7KWKt5f+pVyd1TxivSphKFzCWgRRp417vtWB99lrZkhR57vm7y75YYJiN5rhFDVtm0NyKhaTGX7Fh9W64poDwJCfjtdR3KgD/k/cOkOFomXwp69pi6kk0c6j0u3YTl1VP3c6SxkE5DoTec2Wx58/+GcUHKJzOV17YYhc/axYujGyJWxsj4It4a3FDE+5tf3K69auX+e//IRFHlkE4RVjk3b7UF1PsO84gyDarrQWkm/rNmlCLs6/WI40xVp/K0hFYxras+SlLzcRvGHlz3ZPeuAtR/kNxmMq8GDG2n testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/jgit-s3-connection-v-0.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Sample Amazon S3 connection configuration file, Version 0. 3 | # Version 0 (or lack of version) will produce JetS3tV2 compatible encryption. 4 | # JetS3tV2 supports only PBE algorithms, with partially compromised AES mode. 5 | # 6 | 7 | accesskey = AKIAIYWXB4ETREBRM123 8 | secretkey = ozCuIsqxsARoPe3FFyv3F/jiMSc3Yqay7B9UF234 9 | 10 | crypto.algorithm = PBEWithMD5AndDES 11 | password = secret 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519: -------------------------------------------------------------------------------- 1 | -----BEGIN OPENSSH PRIVATE KEY----- 2 | b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW 3 | QyNTUxOQAAACBIJlrW8XB46iAVY0XqbjYKG8wJ95iILxOb5ONQhFBvPQAAAJC8jORLvIzk 4 | SwAAAAtzc2gtZWQyNTUxOQAAACBIJlrW8XB46iAVY0XqbjYKG8wJ95iILxOb5ONQhFBvPQ 5 | AAAECjklggj+glO2K60Ptg+aXYGBdvXtk9TQnKINhrEIxW9UgmWtbxcHjqIBVjRepuNgob 6 | zAn3mIgvE5vk41CEUG89AAAACHRlc3R1c2VyAQIDBAU= 7 | -----END OPENSSH PRIVATE KEY----- 8 | -------------------------------------------------------------------------------- /org.eclipse.jgit.coverage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.coverage 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_384_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | Proc-Type: 4,ENCRYPTED 3 | DEK-Info: AES-128-CBC,80B1C4D6D9B45690A07B9886050C63A7 4 | 5 | WxS7EGs77p1aPZuxXW0G/yTFKAh4M30AaeGQBPjDR/HTAmPJe3irDH56fdmGhY4+ 6 | zBT+6X1VppB+UqB0nJ/qHq7FeA37eJPXJnuskPh2BzLlBaVhmEnzZylEW33gzAuH 7 | XzC/Z2OjdWRjn+rBXM5fwo9IIC0WzTNpBokdeMo8tpnPzGTlsTFeyVgMZJ3wOlCO 8 | 4ItX9ddY5P+MrLzWP672IyZZqAQGfLec4YoJ286wpHY= 9 | -----END EC PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "junit-ssh", 5 | testonly = 1, 6 | srcs = glob(["src/**/*.java"]), 7 | resource_strip_prefix = "org.eclipse.jgit.junit.ssh/resources", 8 | resources = glob(["resources/**"]), 9 | deps = [ 10 | "//lib:sshd-osgi", 11 | "//lib:sshd-sftp", 12 | # We want these deps to be provided_deps 13 | "//org.eclipse.jgit:jgit", 14 | ], 15 | ) 16 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.lfs.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.lfs.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.pgm.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.junit.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.junit.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.source.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.source.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.target/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.target 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.xtext.ui.shared.xtextBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.xtext.ui.shared.xtextNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.ssh.apache.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ssh.apache.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.http.apache.feature/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.http.apache.feature 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/org.eclipse.jgit.repository/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.repository 4 | JGit P2 Repository 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.UpdateSiteBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.UpdateSiteNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN OPENSSH PRIVATE KEY----- 2 | b3BlbnNzaC1rZXktdjEAAAAACmFlczI1Ni1jYmMAAAAGYmNyeXB0AAAAGAAAABA4hLhtuV 3 | MNBBC+j45F4KFcAAAAEAAAAAEAAAAzAAAAC3NzaC1lZDI1NTE5AAAAIEgmWtbxcHjqIBVj 4 | RepuNgobzAn3mIgvE5vk41CEUG89AAAAkPH343T+NbHb05J/6CHnF9h7C11LJDHe2x9+HC 5 | dNB50fP9M+KJ/cC5cqIeHm8y0fg+wX2WLlJPjNVoSd5MciWCfUWO0k32ciVpoyrGCz5Gh6 6 | axKVVY42QjdgO0S2QxWClnAuMdkVdl2ke/PcGp4yqTTIruAAB0m3d0jZdKNT1Vziww0rQB 7 | +DOo7xQ9Tx99U+rA== 8 | -----END OPENSSH PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | SRCS = glob(["src/**/*.java"]) 4 | 5 | RESOURCES = glob(["resources/**"]) 6 | 7 | java_library( 8 | name = "ssh-apache", 9 | srcs = SRCS, 10 | resource_strip_prefix = "org.eclipse.jgit.ssh.apache/resources", 11 | resources = RESOURCES, 12 | deps = [ 13 | "//lib:eddsa", 14 | "//lib:slf4j-api", 15 | "//lib:sshd-osgi", 16 | "//lib:sshd-sftp", 17 | "//org.eclipse.jgit:jgit", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ed25519_expensive_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN OPENSSH PRIVATE KEY----- 2 | b3BlbnNzaC1rZXktdjEAAAAACmFlczI1Ni1jdHIAAAAGYmNyeXB0AAAAGAAAABAsFN8vig 3 | Nw4/Ow6xbb7MAZAAABAAAAAAEAAAAzAAAAC3NzaC1lZDI1NTE5AAAAIEZXZRjuttLufaP8 4 | wFD/i4lYPnKk01z46Jwv/9U4mPioAAAAkHLErPaXeC179rzXMaSwClstzsKvJ/Gqh2cY8d 5 | cWzymXtKZcivWMKesRHbC+1qRx53ofx15IzT5Fmg6NuNk4sm2s+lH8x8HN3CPWBfjGIelP 6 | iQUR6M6Y91mPigpRC2HUJmJIaFNdrRqFF84a5+qyK//tdy1fv4gNMLi5yPdXiL/Ttw05FS 7 | LkFikjfvSGZSO/MA== 8 | -----END OPENSSH PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/jgit-s3-connection-v-1.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Sample Amazon S3 connection configuration file, Version 1. 3 | # Version 1 will produce JGitV1 compatible encryption. 4 | # It is JetS3tV2-like mode with proper AES support. 5 | # JGitV1 uses hard coded encryption parameters. 6 | # JGitV1 supports only PBE algorithms. 7 | # 8 | 9 | accesskey = AKIAIYWXB4ETREBRM123 10 | secretkey = ozCuIsqxsARoPe3FFyv3F/jiMSc3Yqay7B9UF234 11 | 12 | crypto.algorithm = PBEWithHmacSHA1AndAES_128 13 | crypto.version = 1 14 | password = secret 15 | -------------------------------------------------------------------------------- /tools/bazlets.bzl: -------------------------------------------------------------------------------- 1 | load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") 2 | 3 | NAME = "com_googlesource_gerrit_bazlets" 4 | 5 | def load_bazlets( 6 | commit, 7 | local_path = None): 8 | if not local_path: 9 | git_repository( 10 | name = NAME, 11 | remote = "https://gerrit.googlesource.com/bazlets", 12 | commit = commit, 13 | ) 14 | else: 15 | native.local_repository( 16 | name = NAME, 17 | path = local_path, 18 | ) 19 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/BUILD: -------------------------------------------------------------------------------- 1 | load( 2 | "@com_googlesource_gerrit_bazlets//tools:junit.bzl", 3 | "junit_tests", 4 | ) 5 | 6 | junit_tests( 7 | name = "sshd_apache", 8 | srcs = glob(["tst/**/*.java"]), 9 | tags = ["sshd"], 10 | deps = [ 11 | "//lib:eddsa", 12 | "//lib:junit", 13 | "//lib:sshd-osgi", 14 | "//lib:sshd-sftp", 15 | "//org.eclipse.jgit:jgit", 16 | "//org.eclipse.jgit.ssh.apache:ssh-apache", 17 | "//org.eclipse.jgit.test:sshd-helpers", 18 | ], 19 | ) 20 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_FixNoNewline.patch: -------------------------------------------------------------------------------- 1 | From 1beb3ec1fe68ff18b0287396096442e12c34787a Mon Sep 17 00:00:00 2001 2 | From: Shawn O. Pearce 3 | Date: Fri, 12 Dec 2008 12:29:45 -0800 4 | Subject: [PATCH] make c and add lf 5 | 6 | --- 7 | a | 2 +- 8 | 1 files changed, 1 insertions(+), 1 deletions(-) 9 | 10 | diff --git a/a b/a 11 | index 2e65efe..f2ad6c7 100644 12 | --- a/a 13 | +++ b/a 14 | @@ -1 +1 @@ 15 | -a 16 | \ No newline at end of file 17 | +c 18 | -- 19 | 1.6.1.rc2.306.ge5d5e 20 | 21 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "jgit-archive", 5 | srcs = glob( 6 | ["src/**/*.java"], 7 | exclude = ["src/org/eclipse/jgit/archive/FormatActivator.java"], 8 | ), 9 | resource_strip_prefix = "org.eclipse.jgit.archive/resources", 10 | resources = glob(["resources/**"]), 11 | deps = [ 12 | "//lib:commons-compress", 13 | # We want these deps to be provided_deps 14 | "//org.eclipse.jgit:jgit", 15 | ], 16 | ) 17 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_AddNoNewline.patch: -------------------------------------------------------------------------------- 1 | From ca4719a4b2d93a469f61d1ddfb3e39ecbabfcd69 Mon Sep 17 00:00:00 2001 2 | From: Shawn O. Pearce 3 | Date: Fri, 12 Dec 2008 12:35:14 -0800 4 | Subject: [PATCH] introduce no lf again 5 | 6 | --- 7 | a | 2 +- 8 | 1 files changed, 1 insertions(+), 1 deletions(-) 9 | 10 | diff --git a/a b/a 11 | index f2ad6c7..c59d9b6 100644 12 | --- a/a 13 | +++ b/a 14 | @@ -1 +1 @@ 15 | -c 16 | +d 17 | \ No newline at end of file 18 | -- 19 | 1.6.1.rc2.306.ge5d5e 20 | 21 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_ecdsa_521_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PRIVATE KEY----- 2 | Proc-Type: 4,ENCRYPTED 3 | DEK-Info: AES-128-CBC,7070032284B3C310353B8C352AB2D8CE 4 | 5 | UBgXTwobcLX1VFtQaLNiwwVzdN1+TlmhSRCnU+kv2EpunXxfvyOVS1mZTam9NyhE 6 | O0Mc7REi5hDHp8UYM7MP+wrwK+QM3D2Vm2/Rh0+acd4Gu2XGACJHWXGIyKwNsU0R 7 | ZddusHIi+979sHw3vSUFCvuDwc9YZBoujpzls7NYEWXiAVv6wd1RCtAynkBk/uvc 8 | 1F7iHLuRttejBPvrb/a2AxY0pFpCuCVmGjuiS5bfVWBj7xLEplqdU6/95rd9pRwx 9 | e2uRlU0AFiQGNPStfhjgfCWnmf+aX3vAgVqkLMYKYQE= 10 | -----END EC PRIVATE KEY----- 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.jgit.lib; 2 | 3 | /** 4 | * Parsed information about a checkout. 5 | * 6 | * @since 3.0 7 | */ 8 | public interface CheckoutEntry { 9 | 10 | /** 11 | * Get the name of the branch before checkout 12 | * 13 | * @return the name of the branch before checkout 14 | */ 15 | String getFromBranch(); 16 | 17 | /** 18 | * Get the name of the branch after checkout 19 | * 20 | * @return the name of the branch after checkout 21 | */ 22 | String getToBranch(); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "jgit-lfs-server", 5 | srcs = glob(["src/**/*.java"]), 6 | resource_strip_prefix = "org.eclipse.jgit.lfs.server/resources", 7 | resources = glob(["resources/**"]), 8 | deps = [ 9 | "//lib:gson", 10 | "//lib:httpcore", 11 | "//lib:servlet-api", 12 | "//lib:slf4j-api", 13 | "//org.eclipse.jgit.http.apache:http-apache", 14 | "//org.eclipse.jgit:jgit", 15 | "//org.eclipse.jgit.lfs:jgit-lfs", 16 | ], 17 | ) 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Automatic-Module-Name: org.eclipse.jgit.ant 5 | Bundle-SymbolicName: org.eclipse.jgit.ant 6 | Bundle-Version: 5.5.0.qualifier 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 8 | Import-Package: org.apache.tools.ant, 9 | org.eclipse.jgit.storage.file;version="[5.5.0,5.6.0)" 10 | Bundle-Localization: plugin 11 | Bundle-Vendor: %Bundle-Vendor 12 | Export-Package: org.eclipse.jgit.ant, 13 | org.eclipse.jgit.ant.tasks;version="5.5.0";uses:="org.apache.tools.ant.types,org.apache.tools.ant" 14 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_3072.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUzzht4+crpxH0SL8fRLfpCF19SXSpQhlesc29L2L+elNl03WYLNbF40ebRglBamf0Co9kYb908a3cJAQvnZMpdrBj/SSz7inQkn3brSipUEUmtcTmVq1VAJ0hnUZHaIkveRktcddKRRHKAQv1oF84RRKYLhKQ1jQs4a7AxnZPJeIVYctj2V7UNTZQxt+Trn7ouDNT4UrM7iyD/NkPegH0D6f6jNJm/9gQy4+9QBugxQmu7+5zoPlTGHAnoZIo2RK3fElQqeyiGQJtECr9qey9UmoSyBlz6gpUWJ0s8/P2suOgSXfD5xSUzRNttdqq0VcKgTxLoIAkb8blGR+vDttRSSMZtitWqNHVbfZ2De3HNkxWiMjOiUHkta2xtljrbRv6EeTtWH4XdXDbKKcY2s8NWdUzAH6lEKw+RZK+Uu+lHgLvGqqIS5wHV4WrBZJWF8ODOS+1OJownszti6cnmkVaM13TItk2AhrlIRLOufnrjDCNzAFsxWJ+KYynem8UFus= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_3072_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUzzht4+crpxH0SL8fRLfpCF19SXSpQhlesc29L2L+elNl03WYLNbF40ebRglBamf0Co9kYb908a3cJAQvnZMpdrBj/SSz7inQkn3brSipUEUmtcTmVq1VAJ0hnUZHaIkveRktcddKRRHKAQv1oF84RRKYLhKQ1jQs4a7AxnZPJeIVYctj2V7UNTZQxt+Trn7ouDNT4UrM7iyD/NkPegH0D6f6jNJm/9gQy4+9QBugxQmu7+5zoPlTGHAnoZIo2RK3fElQqeyiGQJtECr9qey9UmoSyBlz6gpUWJ0s8/P2suOgSXfD5xSUzRNttdqq0VcKgTxLoIAkb8blGR+vDttRSSMZtitWqNHVbfZ2De3HNkxWiMjOiUHkta2xtljrbRv6EeTtWH4XdXDbKKcY2s8NWdUzAH6lEKw+RZK+Uu+lHgLvGqqIS5wHV4WrBZJWF8ODOS+1OJownszti6cnmkVaM13TItk2AhrlIRLOufnrjDCNzAFsxWJ+KYynem8UFus= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.coverage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testError_GitBinaryNoForwardHunk.patch: -------------------------------------------------------------------------------- 1 | create mode 100644 org.spearce.egit.ui/icons/toolbar/pushe.png 2 | 3 | diff --git a/org.spearce.egit.ui/icons/toolbar/fetchd.png b/org.spearce.egit.ui/icons/toolbar/fetchd.png 4 | new file mode 100644 5 | index 0000000000000000000000000000000000000000..4433c543f2a52b586a3ed5e31b138244107bc239 6 | GIT binary patch 7 | 8 | diff --git a/org.spearce.egit.ui/icons/toolbar/fetche.png b/org.spearce.egit.ui/icons/toolbar/fetche.png 9 | new file mode 100644 10 | index 0000000000000000000000000000000000000000..0ffeb419e6ab302caa5e58661854b33853dc43dc 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/indexdiff/filerepo.txt: -------------------------------------------------------------------------------- 1 | blob 2 | mark :1 3 | data 10 4 | äéü.txt 5 | blob 6 | mark :2 7 | data 8 8 | test.txt 9 | blob 10 | mark :3 11 | data 5 12 | Test 13 | 14 | blob 15 | mark :4 16 | data 7 17 | äéü 18 | 19 | reset refs/heads/master 20 | commit refs/heads/master 21 | mark :5 22 | author A U Thor 1450727513 +0100 23 | committer A U Thor 1450727513 +0100 24 | data 26 25 | Initial commit with links 26 | M 120000 :1 testfolder/aeu.txt 27 | M 120000 :2 testfolder/link.txt 28 | M 100644 :3 testfolder/test.txt 29 | M 100644 :4 testfolder/äéü.txt 30 | 31 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_dsa.pub: -------------------------------------------------------------------------------- 1 | ssh-dss AAAAB3NzaC1kc3MAAACBAL6YkRf9cGWhaE0z4ES6iHnP4QC5l9XInxwc0qVCYLWxasQ0oaE/xmHNZ4dbQDsme9NCAypbrIPiYPMKltHXATPkp5cCmESMIY+dGKTtDhGOllN3o2qc0X8JhgZi7BHtkZQ8hNOkolaBfo2QST5ri29NY/vF/E6rmIoiykUSEQ6VAAAAFQCAYk3QEfDNrcK12XbKQY3Saa4w1wAAAIA6tFh1dEeGmw57AiL0ZBqHSV17sBWuZlrAr1kHCENRqAvnyBLw+9yw01WFLZ0oRfjmmpmaBrK3ZQQT/luR7f4J1m1K0Ox7MFgy7w8j/SqM5QuGXvEslPlrIIg3Zm69wfy+2ofz19eBmQjPRzrwDNjVkWMk9z5N0TSm4j3eYxVFqgAAAIEAslyMZiOwYA3oiFMQTJEphKdgejWsjqQ9LoKppfZ3d4Jj1V3tgI1s/wHfoneUUrUwM+sMHZKXbBDLWWQUOSIxDYcXKDkbZ1FlmhvJR+45D2LyLKjEnjVDlQCwYly4P26zXqciZS7k3H/DjiHtAPUeoHm9IYb1A03K8Bd/xW0guMc= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_dsa_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-dss AAAAB3NzaC1kc3MAAACBAL6YkRf9cGWhaE0z4ES6iHnP4QC5l9XInxwc0qVCYLWxasQ0oaE/xmHNZ4dbQDsme9NCAypbrIPiYPMKltHXATPkp5cCmESMIY+dGKTtDhGOllN3o2qc0X8JhgZi7BHtkZQ8hNOkolaBfo2QST5ri29NY/vF/E6rmIoiykUSEQ6VAAAAFQCAYk3QEfDNrcK12XbKQY3Saa4w1wAAAIA6tFh1dEeGmw57AiL0ZBqHSV17sBWuZlrAr1kHCENRqAvnyBLw+9yw01WFLZ0oRfjmmpmaBrK3ZQQT/luR7f4J1m1K0Ox7MFgy7w8j/SqM5QuGXvEslPlrIIg3Zm69wfy+2ofz19eBmQjPRzrwDNjVkWMk9z5N0TSm4j3eYxVFqgAAAIEAslyMZiOwYA3oiFMQTJEphKdgejWsjqQ9LoKppfZ3d4Jj1V3tgI1s/wHfoneUUrUwM+sMHZKXbBDLWWQUOSIxDYcXKDkbZ1FlmhvJR+45D2LyLKjEnjVDlQCwYly4P26zXqciZS7k3H/DjiHtAPUeoHm9IYb1A03K8Bd/xW0guMc= testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/jgit-s3-config.policy.bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2012-10-17", 3 | "Statement": [ 4 | { 5 | "Sid": "DenyAllButKnownSourceAddressWithMask", 6 | "Effect": "Deny", 7 | "Principal": "*", 8 | "Action": "s3:*", 9 | "Resource": "arn:aws:s3:::jgit.eclipse.org/*", 10 | "Condition": { 11 | "NotIpAddress": { 12 | "aws:SourceIp": [ 13 | "198.41.30.0/24", 14 | "67.175.188.187/32" 15 | ] 16 | } 17 | } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_GitBinaryDelta.patch: -------------------------------------------------------------------------------- 1 | From 7e49721ad0efdec3a81e20bc58e385ea5d2b87b7 Mon Sep 17 00:00:00 2001 2 | From: Shawn O. Pearce 3 | Date: Fri, 12 Dec 2008 12:45:17 -0800 4 | Subject: [PATCH] make zero have a 3 5 | 6 | --- 7 | zero.bin | Bin 4096 -> 4096 bytes 8 | 1 files changed, 0 insertions(+), 0 deletions(-) 9 | 10 | diff --git a/zero.bin b/zero.bin 11 | index 08e7df176454f3ee5eeda13efa0adaa54828dfd8..d70d8710b6d32ff844af0ee7c247e4b4b051867f 100644 12 | GIT binary patch 13 | delta 12 14 | TcmZorXi%6C%4ociaTPxR8IA+R 15 | 16 | delta 11 17 | ScmZorXi(Uguz-JJK>`37u>@iO 18 | 19 | -- 20 | 1.6.1.rc2.306.ge5d5e 21 | 22 | -------------------------------------------------------------------------------- /org.eclipse.jgit/resources/org/eclipse/jgit/gitrepo/internal/RepoText.properties: -------------------------------------------------------------------------------- 1 | copyFileFailed=Error occurred during execution of copyfile rule. 2 | errorIncludeFile=Error: unable to read include file {0} 3 | errorIncludeNotImplemented=Error: tag not supported as no callback defined. 4 | errorNoDefault=Error: no default remote in manifest file. 5 | errorNoDefaultFilename=Error: no default remote in manifest file {0}. 6 | errorNoFetch=Error: remote {0} is missing fetch attribute. 7 | errorParsingManifestFile=Error occurred during parsing manifest file. 8 | errorRemoteUnavailable=Error remote {0} is unavailable. 9 | invalidManifest=Invalid manifest. 10 | repoCommitMessage=Added repo manifest. 11 | -------------------------------------------------------------------------------- /org.eclipse.jgit/resources/org/eclipse/jgit/internal/ketch/KetchText.properties: -------------------------------------------------------------------------------- 1 | accepted=accepted. 2 | cannotFetchFromLocalReplica=cannot fetch from LocalReplica 3 | failed=failed! 4 | invalidFollowerUri=invalid follower URI 5 | leaderFailedToStore=leader failed to store 6 | localReplicaRequired=LocalReplica instance is required 7 | mismatchedTxnNamespace=mismatched txnNamespace; expected {0} found {1} 8 | outsideTxnNamespace=ref {0} is outside of txnNamespace {1} 9 | proposingUpdates=Proposing updates 10 | queuedProposalFailedToApply=queued proposal failed to apply 11 | starting=starting! 12 | unsupportedVoterCount=unsupported voter count {0}, expected one of {1} 13 | waitingForQueue=Waiting for queue 14 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/jgit-s3-config.policy.user.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2012-10-17", 3 | "Statement": [ 4 | { 5 | "Sid": "BucketList", 6 | "Effect": "Allow", 7 | "Action": "s3:ListAllMyBuckets", 8 | "Resource": [ 9 | "arn:aws:s3:::jgit.eclipse.org" 10 | ] 11 | }, 12 | { 13 | "Sid": "BucketFullControl", 14 | "Effect": "Allow", 15 | "Action": [ 16 | "s3:*" 17 | ], 18 | "Resource": [ 19 | "arn:aws:s3:::jgit.eclipse.org", 20 | "arn:aws:s3:::jgit.eclipse.org/*" 21 | ] 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | java_library( 4 | name = "junit-http", 5 | testonly = 1, 6 | srcs = glob(["src/**/*.java"]), 7 | resources = glob(["resources/**"]), 8 | # TODO(davido): we want here provided deps 9 | deps = [ 10 | "//lib:jetty-http", 11 | "//lib:jetty-security", 12 | "//lib:jetty-server", 13 | "//lib:jetty-servlet", 14 | "//lib:jetty-util", 15 | "//lib:junit", 16 | "//lib:servlet-api", 17 | "//lib:slf4j-api", 18 | "//org.eclipse.jgit.http.server:jgit-servlet", 19 | "//org.eclipse.jgit:jgit", 20 | "//org.eclipse.jgit.junit:junit", 21 | ], 22 | ) 23 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Bundle-Localization: plugin 2 | Manifest-Version: 1.0 3 | Bundle-ManifestVersion: 2 4 | Bundle-Name: %Bundle-Name 5 | Automatic-Module-Name: org.eclipse.jgit.ant.test 6 | Bundle-SymbolicName: org.eclipse.jgit.ant.test 7 | Bundle-Vendor: %Bundle-Vendor 8 | Bundle-Version: 5.5.0.qualifier 9 | Bundle-ActivationPolicy: lazy 10 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 11 | Import-Package: org.apache.tools.ant, 12 | org.eclipse.jgit.ant.tasks;version="[5.5.0,5.6.0)", 13 | org.eclipse.jgit.junit;version="[5.5.0,5.6.0)", 14 | org.eclipse.jgit.lib;version="[5.5.0,5.6.0)", 15 | org.eclipse.jgit.util;version="[5.5.0,5.6.0)", 16 | org.hamcrest.core;version="[1.1.0,2.0.0)", 17 | org.junit;version="[4.12,5.0.0)" 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_dsa: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PRIVATE KEY----- 2 | MIIBuwIBAAKBgQC+mJEX/XBloWhNM+BEuoh5z+EAuZfVyJ8cHNKlQmC1sWrENKGh 3 | P8ZhzWeHW0A7JnvTQgMqW6yD4mDzCpbR1wEz5KeXAphEjCGPnRik7Q4RjpZTd6Nq 4 | nNF/CYYGYuwR7ZGUPITTpKJWgX6NkEk+a4tvTWP7xfxOq5iKIspFEhEOlQIVAIBi 5 | TdAR8M2twrXZdspBjdJprjDXAoGAOrRYdXRHhpsOewIi9GQah0lde7AVrmZawK9Z 6 | BwhDUagL58gS8PvcsNNVhS2dKEX45pqZmgayt2UEE/5bke3+CdZtStDsezBYMu8P 7 | I/0qjOULhl7xLJT5ayCIN2ZuvcH8vtqH89fXgZkIz0c68AzY1ZFjJPc+TdE0puI9 8 | 3mMVRaoCgYEAslyMZiOwYA3oiFMQTJEphKdgejWsjqQ9LoKppfZ3d4Jj1V3tgI1s 9 | /wHfoneUUrUwM+sMHZKXbBDLWWQUOSIxDYcXKDkbZ1FlmhvJR+45D2LyLKjEnjVD 10 | lQCwYly4P26zXqciZS7k3H/DjiHtAPUeoHm9IYb1A03K8Bd/xW0guMcCFFeUfQeX 11 | 3mFPCfKJ5uXMjkPUqIo/ 12 | -----END DSA PRIVATE KEY----- 13 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/resources/org/eclipse/jgit/lfs/server/internal/LfsServerText.properties: -------------------------------------------------------------------------------- 1 | failedToCalcSignature=Failed to calculate a request signature: {0} 2 | invalidPathInfo=Invalid pathInfo: ''{0}'' does not match ''/'{'SHA-256'}''' 3 | objectNotFound=Object ''{0}'' not found 4 | undefinedS3AccessKey=S3 configuration: 'accessKey' is undefined 5 | undefinedS3Bucket=S3 configuration: 'bucket' is undefined 6 | undefinedS3Region=S3 configuration: 'region' is undefined 7 | undefinedS3SecretKey=S3 configuration: 'secretKey' is undefined 8 | undefinedS3StorageClass=S3 configuration: 'storageClass' is undefined 9 | unparsableEndpoint=Unable to parse service endpoint: {0} 10 | unsupportedOperation=Operation ''{0}'' is not supported 11 | unsupportedUtf8=UTF-8 encoding is not supported. 12 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_4096.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDNtJeBHx0z8RTfpPaUApShGWiMqyk+EpV8O3s3emsYBzYvoA/TLcbUcsuAo8rb1LQLJ1yrKXr3hJP6672pjMMtCUVAdvEgbvo86YdeP3ZsXjuUlRE3GLvyGgQOdla0MbSuxQIEPUjjP61eNZXzWm/cGpWDmKVHq6o2C/dHNePaMvpD7fPBfF4zDuMndO66SF/nSGXFuUfhsEg4u5nJvi3xHgTJeasA+6kdpRlKLBvFoOtX6yB27/sbx2fIHR1UvcBQ1QSntauHY97CeOBRw1BCbIm4H3zAQ/f4atOyS2LGMgSYJ17+B8OyXknEHPNtQW2VDwlU6ef0kJDZTftxGCCxbfKiMXEYJT5slpfPTNKA+Z9H+tPuheAMpHvolnZVJMa4AWs9x1HISs+Dg8LoW1bSY3GfZLpErbyzrGlMPLAQO7wROGUohcac31cNfbqBjDnpmWYBolDopA/8XQCR/ydEBHOQ8m0hrbWIGtQdFcsXtgqcHAvIJSBMDdZIOA10/0Zrv7okLmAY9bkoYgqgrtJlj0vE2hXrqKCWnScYQzbtlTWtrCWXBwkDORtJpWIP+++siK7PTizj7kr6sCF7wJThRMFZQmBS+1NJXt39IF8UuxAkj9bXWf35IIhsELH2c437GQyQxBXKsw9agP6hhHH/BcYg7aqSQ956AbJvygpiw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_4096_testpass.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDNtJeBHx0z8RTfpPaUApShGWiMqyk+EpV8O3s3emsYBzYvoA/TLcbUcsuAo8rb1LQLJ1yrKXr3hJP6672pjMMtCUVAdvEgbvo86YdeP3ZsXjuUlRE3GLvyGgQOdla0MbSuxQIEPUjjP61eNZXzWm/cGpWDmKVHq6o2C/dHNePaMvpD7fPBfF4zDuMndO66SF/nSGXFuUfhsEg4u5nJvi3xHgTJeasA+6kdpRlKLBvFoOtX6yB27/sbx2fIHR1UvcBQ1QSntauHY97CeOBRw1BCbIm4H3zAQ/f4atOyS2LGMgSYJ17+B8OyXknEHPNtQW2VDwlU6ef0kJDZTftxGCCxbfKiMXEYJT5slpfPTNKA+Z9H+tPuheAMpHvolnZVJMa4AWs9x1HISs+Dg8LoW1bSY3GfZLpErbyzrGlMPLAQO7wROGUohcac31cNfbqBjDnpmWYBolDopA/8XQCR/ydEBHOQ8m0hrbWIGtQdFcsXtgqcHAvIJSBMDdZIOA10/0Zrv7okLmAY9bkoYgqgrtJlj0vE2hXrqKCWnScYQzbtlTWtrCWXBwkDORtJpWIP+++siK7PTizj7kr6sCF7wJThRMFZQmBS+1NJXt39IF8UuxAkj9bXWf35IIhsELH2c437GQyQxBXKsw9agP6hhHH/BcYg7aqSQ956AbJvygpiw== testuser 2 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Bundle-Localization: plugin 2 | Manifest-Version: 1.0 3 | Bundle-ManifestVersion: 2 4 | Bundle-Name: %Bundle-Name 5 | Automatic-Module-Name: org.eclipse.jgit.ui 6 | Bundle-SymbolicName: org.eclipse.jgit.ui 7 | Bundle-Version: 5.5.0.qualifier 8 | Bundle-Vendor: %Bundle-Vendor 9 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 10 | Export-Package: org.eclipse.jgit.awtui;version="5.5.0" 11 | Import-Package: org.eclipse.jgit.errors;version="[5.5.0,5.6.0)", 12 | org.eclipse.jgit.lib;version="[5.5.0,5.6.0)", 13 | org.eclipse.jgit.nls;version="[5.5.0,5.6.0)", 14 | org.eclipse.jgit.revplot;version="[5.5.0,5.6.0)", 15 | org.eclipse.jgit.revwalk;version="[5.5.0,5.6.0)", 16 | org.eclipse.jgit.transport;version="[5.5.0,5.6.0)", 17 | org.eclipse.jgit.util;version="[5.5.0,5.6.0)" 18 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ssh.apache.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/BUILD: -------------------------------------------------------------------------------- 1 | load( 2 | "@com_googlesource_gerrit_bazlets//tools:junit.bzl", 3 | "junit_tests", 4 | ) 5 | 6 | package(default_visibility = ["//visibility:public"]) 7 | 8 | junit_tests( 9 | name = "lfs", 10 | srcs = glob(["tst/**/*.java"]), 11 | tags = ["lfs"], 12 | deps = [ 13 | ":helpers", 14 | "//lib:junit", 15 | "//org.eclipse.jgit:jgit", 16 | "//org.eclipse.jgit.junit:junit", 17 | "//org.eclipse.jgit.lfs:jgit-lfs", 18 | ], 19 | ) 20 | 21 | java_library( 22 | name = "helpers", 23 | testonly = 1, 24 | srcs = glob(["src/**/*.java"]), 25 | deps = [ 26 | "//lib:junit", 27 | "//org.eclipse.jgit:jgit", 28 | "//org.eclipse.jgit.junit:junit", 29 | "//org.eclipse.jgit.lfs:jgit-lfs", 30 | ], 31 | ) 32 | -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | genrule( 4 | name = "all", 5 | testonly = 1, 6 | srcs = [ 7 | "//org.eclipse.jgit:jgit", 8 | "//org.eclipse.jgit.pgm:pgm", 9 | "//org.eclipse.jgit.ui:ui", 10 | "//org.eclipse.jgit.archive:jgit-archive", 11 | "//org.eclipse.jgit.http.apache:http-apache", 12 | "//org.eclipse.jgit.http.server:jgit-servlet", 13 | "//org.eclipse.jgit.lfs:jgit-lfs", 14 | "//org.eclipse.jgit.lfs.server:jgit-lfs-server", 15 | "//org.eclipse.jgit.junit:junit", 16 | ], 17 | outs = ["all.zip"], 18 | cmd = " && ".join([ 19 | "p=$$PWD", 20 | "t=$$(mktemp -d || mktemp -d -t bazel-tmp)", 21 | "cp $(SRCS) $$t", 22 | "cd $$t", 23 | "zip -qr $$p/$@ .", 24 | ]), 25 | ) 26 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_dsa_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PRIVATE KEY----- 2 | Proc-Type: 4,ENCRYPTED 3 | DEK-Info: AES-128-CBC,EBB6ACAA4F1FC558865344E3C2B91A5F 4 | 5 | CWMAq20YBO8ueHnmQ7IaKa7ISEvNbwbzqoBIxor6TZYSU3JvlIf5AL2UvGpMJDk1 6 | fyROdCjdVAeWKQC0peU54D3YnD3am4gZlrclPMjMRnjBmqO+vnU7bTudIt/8y6vg 7 | gmHZki0/aceQ6QvGwGrxBezBPaK4Bc926lePujHHE/PbtuQgkBw7rhIBGKVuy0qN 8 | sFbC4AGnYl5tudy5RLvCcpQvpDCjnYAfGQVimRYSOsaOwTEBvsnQFUH1pqQAYLC4 9 | Capo1yj6Q0smzwsGoyFSvmPkyzLbMTT42m+M48gc5nuaOkbU5absqOb8cQgRVmWB 10 | W1HnpufqGtyF6vBK+qlzg157bhQDYMwZuubX+IrTRL67djBiSIpiRDZduJavT3zq 11 | iSrRGSnjnkhp4NxtJJjprDQe4VAZEccN5GWPjClbogjpsG+fmTJiNDMI88L11DrV 12 | Vjeaxsql31iur/xGwvmBYd+/V+Nu4v7kA4XViO/3ZIpqi8qvQ3si5hbALSX0OPnm 13 | 9q0eMp9qfmzPvbmysq2BEenBaZDwEWYTYpcF23pjwc1EvmfP8EAYT+xH95ZhxVmc 14 | Sujq0VyGeIhy7+gRHZo2Fg== 15 | -----END DSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.jgit.api.errors; 2 | 3 | /** 4 | * Thrown from StashApplyCommand when stash apply fails 5 | */ 6 | public class StashApplyFailureException extends GitAPIException { 7 | 8 | private static final long serialVersionUID = 1L; 9 | 10 | /** 11 | * Constructor for StashApplyFailureException 12 | * 13 | * @param message 14 | * error message 15 | * @param cause 16 | * a {@link java.lang.Throwable} 17 | * @since 4.1 18 | */ 19 | public StashApplyFailureException(String message, Throwable cause) { 20 | super(message, cause); 21 | } 22 | 23 | /** 24 | * Create a StashApplyFailedException 25 | * 26 | * @param message 27 | * error message 28 | */ 29 | public StashApplyFailureException(String message) { 30 | super(message); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testError_CcTruncatedOld.patch: -------------------------------------------------------------------------------- 1 | commit 1a56639bbea8e8cbfbe5da87746de97f9217ce9b 2 | Date: Tue May 13 00:43:56 2008 +0200 3 | ... 4 | 5 | diff --cc org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 6 | index 169356b,dd8c317..fd85931 7 | mode 100644,100644..100755 8 | --- a/org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 9 | +++ b/org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 10 | @@@ -55,12 -163,13 +163,15 @@@ public class UIText extends NLS 11 | 12 | /** */ 13 | public static String ResourceHistory_toggleCommentWrap; 14 | + 15 | /** */ 16 | + /** */ 17 | public static String ResourceHistory_toggleRevDetail; 18 | /** */ 19 | public static String ResourceHistory_toggleRevComment; 20 | /** */ 21 | public static String ResourceHistory_toggleTooltips; 22 | 23 | 24 | commit 1a56639bbea8e8cbfbe5da87746de97f9217ce9b 25 | -------------------------------------------------------------------------------- /org.eclipse.jgit/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | INSECURE_CIPHER_FACTORY = [ 4 | "src/org/eclipse/jgit/transport/InsecureCipherFactory.java", 5 | ] 6 | 7 | SRCS = glob( 8 | ["src/**/*.java"], 9 | exclude = INSECURE_CIPHER_FACTORY, 10 | ) 11 | 12 | RESOURCES = glob(["resources/**"]) 13 | 14 | java_library( 15 | name = "jgit", 16 | srcs = SRCS, 17 | resource_strip_prefix = "org.eclipse.jgit/resources", 18 | resources = RESOURCES, 19 | deps = [ 20 | ":insecure_cipher_factory", 21 | "//lib:bcpg", 22 | "//lib:bcpkix", 23 | "//lib:bcprov", 24 | "//lib:javaewah", 25 | "//lib:jsch", 26 | "//lib:jzlib", 27 | "//lib:slf4j-api", 28 | ], 29 | ) 30 | 31 | java_library( 32 | name = "insecure_cipher_factory", 33 | srcs = INSECURE_CIPHER_FACTORY, 34 | javacopts = ["-Xep:InsecureCryptoUsage:OFF"], 35 | ) 36 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testError_TruncatedNew.patch: -------------------------------------------------------------------------------- 1 | diff --git a/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java b/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 2 | index 45c2f8a..3291bba 100644 3 | --- a/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 4 | +++ b/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 5 | @@ -236,9 +236,9 @@ protected boolean getBoolean(final String section, String subsection, 6 | return defaultValue; 7 | 8 | n = n.toLowerCase(); 9 | - if (MAGIC_EMPTY_VALUE.equals(n) || "yes".equals(n) || "true".equals(n) || "1".equals(n)) { 10 | return true; 11 | - } else if ("no".equals(n) || "false".equals(n) || "0".equals(n)) { 12 | + } else if ("no".equalsIgnoreCase(n) || "false".equalsIgnoreCase(n) || "0".equalsIgnoreCase(n)) { 13 | return false; 14 | } else { 15 | throw new IllegalArgumentException("Invalid boolean value: " 16 | -------------------------------------------------------------------------------- /tools/default.defs: -------------------------------------------------------------------------------- 1 | def java_sources( 2 | name, 3 | srcs, 4 | visibility = ['PUBLIC'] 5 | ): 6 | java_library( 7 | name = name, 8 | resources = srcs, 9 | visibility = visibility, 10 | ) 11 | 12 | def maven_jar( 13 | name, 14 | group, 15 | artifact, 16 | version, 17 | bin_sha1, 18 | src_sha1, 19 | visibility = ['PUBLIC']): 20 | jar_name = '%s__jar' % name 21 | src_name = '%s__src' % name 22 | 23 | remote_file( 24 | name = jar_name, 25 | sha1 = bin_sha1, 26 | url = 'mvn:%s:%s:jar:%s' % (group, artifact, version), 27 | out = '%s.jar' % jar_name, 28 | ) 29 | 30 | remote_file( 31 | name = src_name, 32 | sha1 = src_sha1, 33 | url = 'mvn:%s:%s:src:%s' % (group, artifact, version), 34 | out = '%s.jar' % src_name, 35 | ) 36 | 37 | prebuilt_jar( 38 | name = name, 39 | binary_jar = ':' + jar_name, 40 | source_jar = ':' + src_name, 41 | visibility = visibility) 42 | 43 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.test 4 | 5 | 6 | 7 | org.eclipse.jdt.core.javabuilder 8 | 9 | 10 | 11 | 12 | org.eclipse.pde.ManifestBuilder 13 | 14 | 15 | 16 | 17 | org.eclipse.pde.SchemaBuilder 18 | 19 | 20 | 21 | 22 | org.eclipse.pde.api.tools.apiAnalysisBuilder 23 | 24 | 25 | 26 | 27 | 28 | org.eclipse.jdt.core.javanature 29 | org.eclipse.pde.PluginNature 30 | org.eclipse.pde.api.tools.apiAnalysisNature 31 | 32 | 33 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testParse_OneFileCc.patch: -------------------------------------------------------------------------------- 1 | commit 1a56639bbea8e8cbfbe5da87746de97f9217ce9b 2 | Date: Tue May 13 00:43:56 2008 +0200 3 | ... 4 | 5 | diff --cc org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 6 | index 169356b,dd8c317..fd85931 7 | mode 100644,100644..100755 8 | --- a/org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 9 | +++ b/org.spearce.egit.ui/src/org/spearce/egit/ui/UIText.java 10 | @@@ -55,12 -163,13 +163,15 @@@ public class UIText extends NLS 11 | 12 | /** */ 13 | public static String ResourceHistory_toggleCommentWrap; 14 | + 15 | /** */ 16 | + public static String ResourceHistory_toggleCommentFill; 17 | + /** */ 18 | public static String ResourceHistory_toggleRevDetail; 19 | + 20 | /** */ 21 | public static String ResourceHistory_toggleRevComment; 22 | + 23 | /** */ 24 | public static String ResourceHistory_toggleTooltips; 25 | 26 | 27 | commit 1a56639bbea8e8cbfbe5da87746de97f9217ce9b 28 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_1024: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXAIBAAKBgQDGfj0Jmqj+CUb+WdFrlkRV49TJtNzvvMb/nX20zqgGm50cOIYr 3 | MzfFpSQN630pXeAidIgiV/PWAsipntQfSWPRG+RpB/wMKHVUNPJCJkjjRFEa56Yx 4 | gAhgNwF511K13x4p2tEN0r6wsfw1nos9VoO8XDBAu3lellAgBdufyCt8vwIDAQAB 5 | AoGBAKU+bNP1BGDQGmEfJv+5DlSuofP19MREVSpx0zfVnv45SFc5G0EVl4Wb0GMi 6 | O4VXmIM2nipxLBZrJOBI0HDnaQcx1zQR6tpvBO7BbAU0sflOvUDldUStTnz3TTQW 7 | 2ECm2y8bsArNqkeLndqis3ICmYL1budhDdUYYcqv10IlbjPJAkEA6yE0zduCE2wM 8 | Ob7lcqiQCOiXeZ0KijHTmSZV4Fn4HRbp+XuxUpjSWFaoDTO0bncGNE+JYjywe64V 9 | XvEORb1hTQJBANgcjEoCrUFY7VYWx3f1tpN0Q6jwwcj67Sd+ysaZNgghTPU32GTa 10 | auGQFv+tifUQMyyVrhAfZ6s8myKOH5SWUDsCQGVvqOkaRq58UXXkDfZ+E81UEm0L 11 | u81Mm52ZdTjZd3mNNhlELIaWmUA0+kDfynpRbOLKYVl5FyX0PxH7ao3Zmo0CQFpL 12 | +1YFLk0KkggRdoCp+wI7ZvXUurN2HNcOxD0c0RWujFA9aD4jgNsEcIeeA/GQNkGf 13 | vN3hsVg793oFti5Ia/cCQAubCMvRqFTyXUBervPVC0kibO3OwYt2xN/7lQXAVSfm 14 | nRwV/46trioV3rMF84hpOk/46Qe5hqbWyQnL+dZljpY= 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /org.eclipse.jgit/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ant 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.lfs 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.pgm 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ui/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ui 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.junit 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testError_TruncatedOld.patch: -------------------------------------------------------------------------------- 1 | diff --git a/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java b/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 2 | index 45c2f8a..3291bba 100644 3 | --- a/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 4 | +++ b/org.eclipse.jgit/src/org/spearce/jgit/lib/RepositoryConfig.java 5 | @@ -236,9 +236,9 @@ protected boolean getBoolean(final String section, String subsection, 6 | return defaultValue; 7 | 8 | n = n.toLowerCase(); 9 | - if (MAGIC_EMPTY_VALUE.equals(n) || "yes".equals(n) || "true".equals(n) || "1".equals(n)) { 10 | + if (MAGIC_EMPTY_VALUE.equals(n) || "yes".equalsIgnoreCase(n) || "true".equalsIgnoreCase(n) || "1".equals(n)) { 11 | return true; 12 | + } else if ("no".equalsIgnoreCase(n) || "false".equalsIgnoreCase(n) || "0".equalsIgnoreCase(n)) { 13 | return false; 14 | } else { 15 | throw new IllegalArgumentException("Invalid boolean value: " 16 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ant.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ant.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.archive/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.archive 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.lfs.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.pgm.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.http.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.http/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.junit.http 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.junit.ssh/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.junit.ssh 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.lfs.server 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.ssh.apache 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.apache/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.http.apache 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.server/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.http.server 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | org.eclipse.pde.PluginNature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.ssh.apache.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Automatic-Module-Name: org.eclipse.jgit.ssh.apache.test 5 | Bundle-SymbolicName: org.eclipse.jgit.ssh.apache.test 6 | Bundle-Version: 5.5.0.qualifier 7 | Bundle-Vendor: %Bundle-Vendor 8 | Bundle-Localization: plugin 9 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 10 | Import-Package: org.eclipse.jgit.internal.transport.sshd.proxy;version="[5.5.0,5.6.0)", 11 | org.eclipse.jgit.junit;version="[5.5.0,5.6.0)", 12 | org.eclipse.jgit.junit.ssh;version="[5.5.0,5.6.0)", 13 | org.eclipse.jgit.lib;version="[5.5.0,5.6.0)", 14 | org.eclipse.jgit.transport;version="[5.5.0,5.6.0)", 15 | org.eclipse.jgit.transport.ssh;version="[5.5.0,5.6.0)", 16 | org.eclipse.jgit.transport.sshd;version="[5.5.0,5.6.0)", 17 | org.eclipse.jgit.util;version="[5.5.0,5.6.0)", 18 | org.junit;version="[4.12,5.0.0)", 19 | org.junit.experimental.theories;version="[4.12,5.0.0)", 20 | org.junit.runner;version="[4.12,5.0.0)" 21 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.server.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.lfs.server.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.pde.api.tools.apiAnalysisBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.pde.PluginNature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.pde.api.tools.apiAnalysisNature 33 | 34 | 35 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/patch/testError_BodyTooLong.patch: -------------------------------------------------------------------------------- 1 | diff --git a/org.eclipse.jgit.test/tst/org/spearce/jgit/lib/RepositoryConfigTest.java b/org.eclipse.jgit.test/tst/org/spearce/jgit/lib/RepositoryConfigTest.java 2 | index da7e704..34ce04a 100644 3 | --- a/org.eclipse.jgit.test/tst/org/spearce/jgit/lib/RepositoryConfigTest.java 4 | +++ b/org.eclipse.jgit.test/tst/org/spearce/jgit/lib/RepositoryConfigTest.java 5 | @@ -109,4 +109,11 @@ assertTrue(Arrays.equals(values.toArray(), repositoryConfig 6 | .getStringList("my", null, "somename"))); 7 | checkFile(cfgFile, "[my]\n\tsomename = value1\n\tsomename = value2\n"); 8 | } 9 | + 10 | + public void test006_readCaseInsensitive() throws IOException { 11 | + final File path = writeTrashFile("config_001", "[Foo]\nBar\n"); 12 | + RepositoryConfig repositoryConfig = new RepositoryConfig(null, path); 13 | +BAD LINE 14 | + assertEquals(true, repositoryConfig.getBoolean("foo", null, "bar", false)); 15 | + assertEquals("", repositoryConfig.getString("foo", null, "bar")); 16 | + } 17 | } 18 | -------------------------------------------------------------------------------- /tools/release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # script to create a jgit release 4 | 5 | # uncomment to switch on trace 6 | #set -x 7 | 8 | # abort if a command hits an error 9 | set -e 10 | 11 | export basePath=$(cd "$(dirname "$0")"; pwd) 12 | echo basePath $basePath 13 | 14 | if [ -z $1 ]; then 15 | echo " 16 | Usage: 17 | $ release.sh 18 | 19 | e.g. release.sh v3.4.0.201405051725-m7 20 | " 21 | exit 22 | fi 23 | 24 | # trimmed git status 25 | export status=$(git status --porcelain) 26 | 27 | if [ ! -z "$status" ]; 28 | then 29 | echo " 30 | working tree is dirty -> can't create release 31 | " 32 | exit 33 | fi 34 | 35 | MSG="JGit $1" 36 | 37 | # tag release 38 | git tag -s -m "$MSG" $1 39 | 40 | # update version numbers 41 | ./tools/version.sh --release 42 | 43 | # commit changed version numbers 44 | git commit -a -s -m "$MSG" 45 | 46 | # move the tag to the version we release 47 | git tag -sf -m "$MSG" $1 48 | 49 | # run the build 50 | mvn clean install -T 1C 51 | mvn clean install -f org.eclipse.jgit.packaging/pom.xml 52 | -------------------------------------------------------------------------------- /org.eclipse.jgit.pgm.test/BUILD: -------------------------------------------------------------------------------- 1 | load( 2 | "@com_googlesource_gerrit_bazlets//tools:junit.bzl", 3 | "junit_tests", 4 | ) 5 | 6 | junit_tests( 7 | name = "pgm", 8 | srcs = glob(["tst/**/*.java"]), 9 | jvm_flags = [ 10 | "-Xmx512m", 11 | "-Dfile.encoding=UTF-8", 12 | ], 13 | tags = ["pgm"], 14 | deps = [ 15 | ":helpers", 16 | "//lib:args4j", 17 | "//lib:commons-compress", 18 | "//lib:javaewah", 19 | "//lib:junit", 20 | "//lib:slf4j-api", 21 | "//lib:slf4j-simple", 22 | "//lib:xz", 23 | "//org.eclipse.jgit.archive:jgit-archive", 24 | "//org.eclipse.jgit:jgit", 25 | "//org.eclipse.jgit.junit:junit", 26 | "//org.eclipse.jgit.pgm:pgm", 27 | ], 28 | ) 29 | 30 | java_library( 31 | name = "helpers", 32 | testonly = 1, 33 | srcs = glob(["src/**/*.java"]), 34 | deps = [ 35 | "//lib:args4j", 36 | "//lib:junit", 37 | "//org.eclipse.jgit:jgit", 38 | "//org.eclipse.jgit.junit:junit", 39 | "//org.eclipse.jgit.pgm:pgm", 40 | ], 41 | ) 42 | -------------------------------------------------------------------------------- /org.eclipse.jgit.test/resources/org/eclipse/jgit/transport/ssh/id_rsa_1024_testpass: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | Proc-Type: 4,ENCRYPTED 3 | DEK-Info: AES-128-CBC,4B8025AB7456E0A2B48408407C6E3FF4 4 | 5 | B9gztX+5QQPqMR/79eJHxjNdo9baoKjfWY+Ye7t1h7ucOPMCEXRSP8FwPwBfbzQh 6 | 6W1AHOfiDCHTzArDRG9SXrFfRlU+8o5ffs/TStTNqde/AXJeNuM3pwbmqKV1m9oY 7 | oWelabmGtNUvGMAHMFm/2uk4BgS9Kjv71KnJg0cQQfIiPKTPBncJe/R5mf6O12rB 8 | ByOrrlDmjtgveZZsgggEZbU9Y9DYiHZp6yT0JepxIWNImQ/A9EeUPTQheVB2ECT6 9 | DLUOwRfyFhdvsfD2eXLK+u7T47keFny3rIfm1e8HC1y3X+T/nFxKGoShecx1NmEL 10 | HMgOKyFSwGSZh5jxE66dSQoc+rRZhCWSyPJEb9cjwp8JLON8oH3Yg+PIXYJhMFK+ 11 | nghAIVXp3/H+cYXMN27j21cRGC7ePuF3YX242Gr+LSj42Wf4qCMTyvWur8WrSe6U 12 | iyrWJ8+w2J7O7rRHGM8v+GYGaiX1qIXFheM/774vsDmjuueOhkjiqs254gaap8xk 13 | LcJUuqJU2AL21+eW+R+EG3Rl/AbMIaQ4GFDpHfgEmmvVVoOvJunNQkDIP9JzKczO 14 | g7cN/EYLUC2TcdmNaiunB8RhXMiaTqw4kYJEzy4lsxk/xjubC7vlQKTvtnWCpob+ 15 | WpHX/2FBdPPULt38AIk4HQq7vKvKw9TmvGeOvQmCUun7eCFFhxKrwNKO5YCXAHvs 16 | fv7JNGfrST4jwbqCvamuk+XTf0GkgJN83G7DT04EIzee6wwai/NRDybgYptJsj9G 17 | 6wBpKH15BtkktuUzM1MCt5+T6Ccsg+d6xE6eStimwDxkXCjvgz/KlS+sPKe7uS4h 18 | -----END RSA PRIVATE KEY----- 19 | -------------------------------------------------------------------------------- /org.eclipse.jgit.packaging/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.jgit.packaging 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 1398668730254 14 | 15 | 10 16 | 17 | org.eclipse.ui.ide.multiFilter 18 | 1.0-name-matches-false-false-*.feature 19 | 20 | 21 | 22 | 1398668730318 23 | 24 | 10 25 | 26 | org.eclipse.ui.ide.multiFilter 27 | 1.0-name-matches-false-false-org.eclipse.jgit.repository 28 | 29 | 30 | 31 | 1398668730384 32 | 33 | 26 34 | 35 | org.eclipse.ui.ide.multiFilter 36 | 1.0-name-matches-false-false-org.eclipse.jgit.target 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /org.eclipse.jgit.http.test/org.eclipse.jgit.http--All-Tests.launch: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /org.eclipse.jgit.lfs.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %Bundle-Name 4 | Automatic-Module-Name: org.eclipse.jgit.lfs.test 5 | Bundle-SymbolicName: org.eclipse.jgit.lfs.test 6 | Bundle-Version: 5.5.0.qualifier 7 | Bundle-Vendor: %Bundle-Vendor 8 | Bundle-Localization: plugin 9 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 10 | Import-Package: org.eclipse.jgit.internal.storage.dfs;version="[5.5.0,5.6.0)", 11 | org.eclipse.jgit.junit;version="[5.5.0,5.6.0)", 12 | org.eclipse.jgit.lfs;version="[5.5.0,5.6.0)", 13 | org.eclipse.jgit.lfs.errors;version="[5.5.0,5.6.0)", 14 | org.eclipse.jgit.lfs.lib;version="[5.5.0,5.6.0)", 15 | org.eclipse.jgit.lib;version="[5.5.0,5.6.0)", 16 | org.eclipse.jgit.revwalk;version="[5.5.0,5.6.0)", 17 | org.eclipse.jgit.treewalk;version="[5.5.0,5.6.0)", 18 | org.eclipse.jgit.treewalk.filter;version="[5.5.0,5.6.0)", 19 | org.eclipse.jgit.util;version="[5.5.0,5.6.0)", 20 | org.hamcrest.core;version="[1.1.0,2.0.0)", 21 | org.junit;version="[4.12,5.0.0)", 22 | org.junit.runner;version="[4.12,5.0.0)", 23 | org.junit.runners;version="[4.12,5.0.0)" 24 | Export-Package: org.eclipse.jgit.lfs.test;version="5.5.0";x-friends:="org.eclipse.jgit.lfs.server.test" 25 | --------------------------------------------------------------------------------