├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE └── workflows │ └── ci.yml ├── .gitignore ├── .mailmap ├── CHANGES.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE.md ├── LibGit2Sharp.Tests ├── ArchiveFixture.cs ├── ArchiveTarFixture.cs ├── AttributesFixture.cs ├── BlameFixture.cs ├── BlobFixture.cs ├── BranchFixture.cs ├── CheckoutFixture.cs ├── CherryPickFixture.cs ├── CleanFixture.cs ├── CloneFixture.cs ├── CommitAncestorFixture.cs ├── CommitFixture.cs ├── ConfigurationFixture.cs ├── ConflictFixture.cs ├── CurrentOperationFixture.cs ├── DescribeFixture.cs ├── DiffBlobToBlobFixture.cs ├── DiffTreeToTargetFixture.cs ├── DiffTreeToTreeFixture.cs ├── DiffWorkdirToIndexFixture.cs ├── EqualityFixture.cs ├── FetchFixture.cs ├── FileHistoryFixture.cs ├── FilterBranchFixture.cs ├── FilterFixture.cs ├── FilterSubstitutionCipherFixture.cs ├── GlobalSettingsFixture.cs ├── IgnoreFixture.cs ├── IndexFixture.cs ├── LibGit2Sharp.Tests.csproj ├── LogFixture.cs ├── MergeFixture.cs ├── MetaFixture.cs ├── MockingFixture.cs ├── NetworkFixture.cs ├── NoteFixture.cs ├── ObjectDatabaseFixture.cs ├── ObjectIdFixture.cs ├── OdbBackendFixture.cs ├── PackBuilderFixture.cs ├── PatchEntryChangesFixture.cs ├── PatchStatsFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── PushFixture.cs ├── RebaseFixture.cs ├── RefSpecFixture.cs ├── ReferenceFixture.cs ├── ReflogFixture.cs ├── RemoteFixture.cs ├── RemoveFixture.cs ├── RepositoryFixture.cs ├── RepositoryOptionsFixture.cs ├── ResetHeadFixture.cs ├── ResetIndexFixture.cs ├── Resources │ ├── .gitattributes │ ├── .gitignore │ ├── assume_unchanged_wd │ │ ├── dot_git │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 87 │ │ │ │ │ └── 2129051d644790636b416d1ef1ec830c5f6b90 │ │ │ │ ├── 88 │ │ │ │ │ └── e38705fdbd3608cddbe904b67c731f3234c45b │ │ │ │ ├── cc │ │ │ │ │ └── 628ccd10742baea8241c5924df992b5c019f71 │ │ │ │ └── ce │ │ │ │ │ └── 013625030ba8dba906f756967f9e9ca394464a │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── hello.txt │ │ └── world.txt │ ├── expected │ │ └── f8d44d7...7252fe2 │ │ │ ├── full-0-3.diff │ │ │ ├── full-0-4.diff │ │ │ ├── full-1-1.diff │ │ │ ├── full-1-2.diff │ │ │ ├── full-2-4.diff │ │ │ ├── full-2-5.diff │ │ │ ├── full-3-2.diff │ │ │ ├── full-3-3.diff │ │ │ ├── full-4-0.diff │ │ │ ├── full-4-1.diff │ │ │ ├── numbers.txt-0-3.diff │ │ │ ├── numbers.txt-0-4.diff │ │ │ ├── numbers.txt-1-1.diff │ │ │ ├── numbers.txt-1-2.diff │ │ │ ├── numbers.txt-2-4.diff │ │ │ ├── numbers.txt-2-5.diff │ │ │ ├── numbers.txt-3-2.diff │ │ │ ├── numbers.txt-3-3.diff │ │ │ ├── numbers.txt-4-0.diff │ │ │ └── numbers.txt-4-1.diff │ ├── expected_archives │ │ ├── commit_with_directory.tar │ │ └── tree_with_directory.tar │ ├── merge_testrepo_wd │ │ ├── a.txt │ │ ├── b.txt │ │ └── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ └── refs │ │ │ ├── objects │ │ │ ├── 79 │ │ │ │ └── 853dbb13f5e83a1e9e69bf747c5a667c21d420 │ │ │ ├── 96 │ │ │ │ └── adea09cb7c3e9e81e488fbf0bc29e61d8100be │ │ │ ├── 09 │ │ │ │ └── 55f5468a8e493c0116872fa3e1807559bd5bb2 │ │ │ ├── 1e │ │ │ │ └── b39b79963b9acb87bb1b76a218d862b689f4cd │ │ │ ├── cf │ │ │ │ └── 2badd0f483ffe19755560e6f736f1b4621f737 │ │ │ ├── e5 │ │ │ │ └── 5b31220c73a5535ba58709791880f3035849d4 │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-f9b2f231d5e59d4a265578d02283f848a5dc4694.idx │ │ │ │ └── pack-f9b2f231d5e59d4a265578d02283f848a5dc4694.pack │ │ │ ├── packed-refs │ │ │ └── refs │ │ │ └── heads │ │ │ ├── conflicts_spaces │ │ │ ├── conflicts_tabs │ │ │ └── normal_merge2 │ ├── mergedrepo_wd │ │ ├── ancestor-and-ours.txt │ │ ├── ancestor-and-theirs.txt │ │ ├── conflicts-one.txt │ │ ├── conflicts-two.txt │ │ ├── dot_git │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── MERGE_HEAD │ │ │ ├── MERGE_MODE │ │ │ ├── MERGE_MSG │ │ │ ├── ORIG_HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 22 │ │ │ │ │ └── 0bd62631c8cf7a83ef39c6b94595f00517211e │ │ │ │ ├── 37 │ │ │ │ │ └── 59e38c9b3ce50a318174970229351a039d7571 │ │ │ │ ├── 47 │ │ │ │ │ └── 8871385b9cd03908c5383acfd568bef023c6b3 │ │ │ │ ├── 49 │ │ │ │ │ └── 3209f496e504d63fd78e8c5b800083b442ea34 │ │ │ │ ├── 51 │ │ │ │ │ ├── 6bd85f78061e09ccc714561d7b504672cb52da │ │ │ │ │ └── bd5572b1186cd3a858dd8099636b2e99a1617b │ │ │ │ ├── 84 │ │ │ │ │ └── af62840be1b1c47b778a8a249f3ff45155038c │ │ │ │ ├── 88 │ │ │ │ │ └── 7b153b165d32409c70163e0f734c090f12f673 │ │ │ │ ├── 91 │ │ │ │ │ ├── 07b30fe11ff310fec93876469147b263fb958c │ │ │ │ │ └── 116bad97c50a2daa278ca6cffe16d0118befe5 │ │ │ │ ├── 94 │ │ │ │ │ ├── 3d961e4091cc5a28a90c58a627850a3b567f68 │ │ │ │ │ └── b4978fe4a6275e29f2cec6aed1d779959e1a11 │ │ │ │ ├── 97 │ │ │ │ │ ├── 0de0b22de9cf8800b6289d2a1b857d0a2d1a2a │ │ │ │ │ └── 36f4cd77759672322f3222ed3ddead1412d969 │ │ │ │ ├── 0c │ │ │ │ │ └── a3f55d4ac2fa4703c149123b0b31d733112f86 │ │ │ │ ├── 1c │ │ │ │ │ └── b365141a52dfbb24933515820eb3045fbca12b │ │ │ │ ├── 1f │ │ │ │ │ └── 85ca51b8e0aac893a621b61a9c2661d6aa6d81 │ │ │ │ ├── 3a │ │ │ │ │ └── afd4d0bac33cc3c78c4c070f3966fb6e6f641a │ │ │ │ ├── 4e │ │ │ │ │ └── b4293b45001605eaaa24fd81201071bf020276 │ │ │ │ ├── 5d │ │ │ │ │ └── ee68477001f447f50fa7ee7e6a818370b5c2fb │ │ │ │ ├── 7a │ │ │ │ │ └── 4f33a5a020363a9030c7de4d332e8fcfa27247 │ │ │ │ ├── 7b │ │ │ │ │ └── 26cd5ac0ee68483ae4d5e1e00b064547ea8c9b │ │ │ │ ├── 8b │ │ │ │ │ ├── 19fd77de5995e6e502e7c3b82657248f510325 │ │ │ │ │ └── 72416545c7e761b64cecad4f1686eae4078aa8 │ │ │ │ ├── 8e │ │ │ │ │ └── efb6f8061e4d10a7a59aac8771dc17958d93eb │ │ │ │ ├── 9a │ │ │ │ │ └── aa9ae562a5f7362425a3fedc4d33ff74fe39e6 │ │ │ │ ├── 9b │ │ │ │ │ └── 2f98b1c086d3929eac387d39fae94425e0115f │ │ │ │ ├── 9d │ │ │ │ │ └── 81f82fccc7dcd7de7a1ffead1815294c2e092c │ │ │ │ ├── b7 │ │ │ │ │ └── a41c703dc1f33185c76944177f3844ede2ee46 │ │ │ │ ├── d4 │ │ │ │ │ └── c107581ff54a41fd496e0a1f1b7b3354752103 │ │ │ │ ├── da │ │ │ │ │ └── d0664ae617d36e464ec08ed969ff496432b075 │ │ │ │ └── ef │ │ │ │ │ └── 70c7154145b09c7d08806e55fd0bfb7172576d │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ ├── branch │ │ │ │ └── master │ │ ├── one.txt │ │ ├── ours-and-theirs.txt │ │ ├── ours-only.txt │ │ ├── theirs-only.txt │ │ └── two.txt │ ├── mergerenames_wd │ │ ├── 0a-no-change.txt │ │ ├── 0b-duplicated-in-ours.txt │ │ ├── 0b-rewritten-in-ours.txt │ │ ├── 0c-duplicated-in-theirs.txt │ │ ├── 0c-rewritten-in-theirs.txt │ │ ├── 1a-newname-in-ours-edited-in-theirs.txt │ │ ├── 1a-newname-in-ours.txt │ │ ├── 1b-newname-in-theirs-edited-in-ours.txt │ │ ├── 1b-newname-in-theirs.txt │ │ ├── 2-newname-in-both.txt │ │ ├── 3a-newname-in-ours-deleted-in-theirs.txt │ │ ├── 3b-newname-in-theirs-deleted-in-ours.txt │ │ ├── 4a-newname-in-ours-added-in-theirs.txt~HEAD │ │ ├── 4a-newname-in-ours-added-in-theirs.txt~rename_conflict_theirs │ │ ├── 4b-newname-in-theirs-added-in-ours.txt~HEAD │ │ ├── 4b-newname-in-theirs-added-in-ours.txt~rename_conflict_theirs │ │ ├── 5a-newname-in-ours-added-in-theirs.txt~HEAD │ │ ├── 5a-newname-in-ours-added-in-theirs.txt~rename_conflict_theirs │ │ ├── 5b-newname-in-theirs-added-in-ours.txt~HEAD │ │ ├── 5b-newname-in-theirs-added-in-ours.txt~rename_conflict_theirs │ │ ├── 6-both-renamed-1-to-2-ours.txt │ │ ├── 6-both-renamed-1-to-2-theirs.txt │ │ ├── 7-both-renamed.txt~HEAD │ │ ├── 7-both-renamed.txt~rename_conflict_theirs │ │ └── dot_git │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── MERGE_HEAD │ │ │ ├── MERGE_MODE │ │ │ ├── MERGE_MSG │ │ │ ├── ORIG_HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── modules │ │ │ └── submodule │ │ │ │ ├── HEAD │ │ │ │ ├── ORIG_HEAD │ │ │ │ ├── config │ │ │ │ ├── index │ │ │ │ ├── info │ │ │ │ └── exclude │ │ │ │ ├── objects │ │ │ │ ├── 18 │ │ │ │ │ └── fae1354bba0a5f1e6a531f9988369142c24a9e │ │ │ │ ├── 29 │ │ │ │ │ └── 7aa6cd028b3336c7802c7a6f49143da4e1602d │ │ │ │ ├── 38 │ │ │ │ │ └── 6c80dc813b89d719797668f40c1be0a6efa996 │ │ │ │ ├── ab │ │ │ │ │ └── 435a147bae6d5906ecfd0916a570c4ab3eeea8 │ │ │ │ ├── ad │ │ │ │ │ └── 16e0a7684ea95bf892980a2ee412293ae979cc │ │ │ │ ├── ae │ │ │ │ │ └── 39c77c70cb6bad18bb471912460c4e1ba0f586 │ │ │ │ ├── c2 │ │ │ │ │ └── 0765f6e24e8bbb63a648d0d11d84da63170190 │ │ │ │ ├── d3 │ │ │ │ │ └── d806a4bef96889117fd7ebac0e3cb5ec152932 │ │ │ │ └── f1 │ │ │ │ │ └── 065ff5593604072837fecaad3e2e268cb0147b │ │ │ │ ├── packed-refs │ │ │ │ └── refs │ │ │ │ ├── heads │ │ │ │ └── master │ │ │ │ └── remotes │ │ │ │ └── origin │ │ │ │ └── HEAD │ │ │ ├── objects │ │ │ ├── 11 │ │ │ │ ├── aeee27ac45a8402c2fd5b875d66dd844e5df00 │ │ │ │ ├── deab00b2d3a6f5a3073988ac050c2d7b6655e2 │ │ │ │ └── f4f3c08b737f5fd896cbefa1425ee63b21b2fa │ │ │ ├── 13 │ │ │ │ └── d1be4ea52a6ced1d7a1d832f0ee3c399348e5e │ │ │ ├── 14 │ │ │ │ └── 39088f509b79b1535b64193137d3ce4b240734 │ │ │ ├── 15 │ │ │ │ └── 8dc7bedb202f5b26502bf3574faa7f4238d56c │ │ │ ├── 16 │ │ │ │ └── f825815cfd20a07a75c71554e82d8eede0b061 │ │ │ ├── 17 │ │ │ │ └── 8940b450f238a56c0d75b7955cb57b38191982 │ │ │ ├── 18 │ │ │ │ ├── 3310e30fb1499af8c619108ffea4d300b5e778 │ │ │ │ └── cb316b1cefa0f8a6946f0e201a8e1a6f845ab9 │ │ │ ├── 19 │ │ │ │ └── b7ac485269b672a101060894de3ba9c2a24dd1 │ │ │ ├── 20 │ │ │ │ └── 91d94c8bd3eb0835dc5220de5e8bb310fa1513 │ │ │ ├── 21 │ │ │ │ └── 671e290278286fb2ce4c63d01699b67adce331 │ │ │ ├── 22 │ │ │ │ └── 7792b52aaa0b238bea00ec7e509b02623f168c │ │ │ ├── 23 │ │ │ │ ├── 3c0919c998ed110a4b6ff36f353aec8b713487 │ │ │ │ ├── 92a2dacc9efb562b8635d6579fb458751c7c5b │ │ │ │ └── ed141a6ae1e798b2f721afedbe947c119111ba │ │ │ ├── 24 │ │ │ │ ├── 1a1005cd9b980732741b74385b891142bcba28 │ │ │ │ ├── 2591eb280ee9eeb2ce63524b9a8b9bc4cb515d │ │ │ │ └── 90b9f1a079420870027deefb49f51d6656cf74 │ │ │ ├── 25 │ │ │ │ ├── 9d08ca43af9200e9ea9a098e44a5a350ebd9b3 │ │ │ │ └── c40b7660c08c8fb581f770312f41b9b03119d1 │ │ │ ├── 26 │ │ │ │ └── 153a3ff3649b6c2bb652d3f06878c6e0a172f9 │ │ │ ├── 27 │ │ │ │ ├── 133da702ba3c60af2a01e96c2555ff4045d692 │ │ │ │ └── 4bbe983022fb4c02f8a2bf2ebe8da4fe130054 │ │ │ ├── 31 │ │ │ │ ├── 68dca1a561889b045a6441909f4c56145e666d │ │ │ │ └── d5472536041a83d986829240bbbdc897c6f8a6 │ │ │ ├── 32 │ │ │ │ └── 21dd512b7e2dc4b5bd03046df6c81b2ab2070b │ │ │ ├── 33 │ │ │ │ ├── 46d64325b39e5323733492cd55f808994a2475 │ │ │ │ └── d500f588fbbe65901d82b4e6b008e549064be0 │ │ │ ├── 34 │ │ │ │ ├── 8dcd41e2b467991578e92bedd16971b877ef1e │ │ │ │ └── bfafff88eaf118402b44e6f3e2dbbf1a582b05 │ │ │ ├── 35 │ │ │ │ ├── 0c6eb3010efc403a6bed682332635314e9ed58 │ │ │ │ ├── 411bfb77cd2cc431f3a03a2b4976ed94b5d241 │ │ │ │ ├── 4704d3613ad4228e4786fc76656b11e98236c4 │ │ │ │ ├── 632e43612c06a3ea924bfbacd48333da874c29 │ │ │ │ └── 75826c96a975031d2c14368529cc5c4353a8fd │ │ │ ├── 36 │ │ │ │ ├── 219b49367146cb2e6a1555b5a9ebd4d0328495 │ │ │ │ └── 4bbe4ce80c7bd31e6307dce77d46e3e1759fb3 │ │ │ ├── 37 │ │ │ │ └── 48859b001c6e627e712a07951aee40afd19b41 │ │ │ ├── 38 │ │ │ │ └── 5c8a0f26ddf79e9041e15e17dc352ed2c4cced │ │ │ ├── 40 │ │ │ │ └── 2784a46a4a3982294231594cbeb431f506d22c │ │ │ ├── 41 │ │ │ │ └── 2b32fb66137366147f1801ecc962452757d48a │ │ │ ├── 42 │ │ │ │ └── 18670ab81cc219a9f94befb5c5dad90ec52648 │ │ │ ├── 43 │ │ │ │ ├── aafd43bea779ec74317dc361f45ae3f532a505 │ │ │ │ └── c338656342227a3a3cd3aa85cbf784061f5425 │ │ │ ├── 45 │ │ │ │ └── 299c1ca5e07bba1fd90843056fb559f96b1f5a │ │ │ ├── 46 │ │ │ │ └── 6daf8552b891e5c22bc58c9d7fc1a2eb8f0289 │ │ │ ├── 47 │ │ │ │ ├── 6dbb3e207313d1d8aaa120c6ad204bf1295e53 │ │ │ │ └── 8172cb2f5ff9b514bc9d04d3bd5ef5840cb3b2 │ │ │ ├── 49 │ │ │ │ ├── 130a28ef567af9a6a6104c38773fedfa5f9742 │ │ │ │ ├── 9df817155e4bdd3c6ee192a72c52f481818230 │ │ │ │ └── fd9edac79d15c8fbfca2d481cbb900beba22a6 │ │ │ ├── 50 │ │ │ │ ├── 12fd565b1393bdfda1805d4ec38ce6619e1fd1 │ │ │ │ ├── 4f75ac95a71ef98051817618576a68505b92f9 │ │ │ │ ├── 84fc2a88b6bdba8db93bd3953a8f4fdb470238 │ │ │ │ └── ce7d7d01217679e26c55939eef119e0c93e272 │ │ │ ├── 51 │ │ │ │ └── 95a1b480f66691b667f10a9e41e70115a78351 │ │ │ ├── 52 │ │ │ │ └── d8bc572af2b6d4ee0d5e62ed5d1fbad92210a9 │ │ │ ├── 53 │ │ │ │ └── 825f41ac8d640612f9423a2f03a69f3d96809a │ │ │ ├── 54 │ │ │ │ ├── 269b3f6ec3d7d4ede24dd350dd5d605495c3ae │ │ │ │ ├── 59c89aa0026d543ce8343bd89871bce543f9c2 │ │ │ │ └── 7607c690372fe81fab8e3bb44c530e129118fd │ │ │ ├── 55 │ │ │ │ └── b4e4687e7a0d9ca367016ed930f385d4022e6f │ │ │ ├── 56 │ │ │ │ ├── 6ab53c220a2eafc1212af1a024513230280ab9 │ │ │ │ └── a638b76b75e068590ac999c2f8621e7f3e264c │ │ │ ├── 57 │ │ │ │ └── 079a46233ae2b6df62e9ade71c4948512abefb │ │ │ ├── 58 │ │ │ │ ├── 43febcb23480df0b5edb22a21c59c772bb8e29 │ │ │ │ ├── 87a5e516c53bd58efb0f02ec6aa031b6fe9ad7 │ │ │ │ └── e853f66699fd02629fd50bde08082bc005933a │ │ │ ├── 59 │ │ │ │ └── 6803b523203a4851c824c07366906f8353f4ad │ │ │ ├── 60 │ │ │ │ ├── 61fe116ecba0800c26113ea1a7dfac2e16eeaf │ │ │ │ └── 91fc2c036a382a69489e3f518ee5aae9a4e567 │ │ │ ├── 61 │ │ │ │ ├── 340eeed7340fa6a8792def9a5938bb5d4434bb │ │ │ │ └── 78885b38fe96e825ac0f492c0a941f288b37f6 │ │ │ ├── 62 │ │ │ │ ├── 12c31dab5e482247d7977e4f0dd3601decf13b │ │ │ │ ├── 269111c3b02a9355badcb9da8678b1bf41787b │ │ │ │ ├── 33c6a0670228627f93c01cef32485a30403670 │ │ │ │ └── c4f6533c9a3894191fdcb96a3be935ade63f1a │ │ │ ├── 63 │ │ │ │ └── 247125386de9ec90a27ad36169307bf8a11a38 │ │ │ ├── 67 │ │ │ │ ├── 110d77886b2af6309b9212961e72b8583e5fa9 │ │ │ │ └── 18a45909532d1fcf5600d0877f7fe7e78f0b86 │ │ │ ├── 68 │ │ │ │ └── c6c84b091926c7d90aa6a79b2bc3bb6adccd8e │ │ │ ├── 69 │ │ │ │ └── f570c57b24ea7c086e94c5e574964798321435 │ │ │ ├── 71 │ │ │ │ ├── 17467b18605a660ebe5586df69e2311ed5609f │ │ │ │ ├── 2ebba6669ea847d9829e4f1059d6c830c8b531 │ │ │ │ └── add2d7b93d55bf3600f8a1582beceebbd050c8 │ │ │ ├── 72 │ │ │ │ ├── cdb057b340205164478565e91eb71647e66891 │ │ │ │ └── ea499e108df5ff0a4a913e7655bbeeb1fb69f2 │ │ │ ├── 74 │ │ │ │ └── df13f0793afdaa972150bba976f7de8284914e │ │ │ ├── 75 │ │ │ │ └── a811bf6bc57694adb3fe604786f3a4efd1cd1b │ │ │ ├── 76 │ │ │ │ ├── 63fce0130db092936b137cabd693ec234eb060 │ │ │ │ └── ab0e2868197ec158ddd6c78d8a0d2fd73d38f9 │ │ │ ├── 80 │ │ │ │ └── a8fbb3abb1ba423d554e9630b8fc2e5698f86b │ │ │ ├── 81 │ │ │ │ ├── 1c70fcb6d5bbd022d04cc31836d30b436f9551 │ │ │ │ └── 87117062b750eed4f93fd7e899f17b52ce554d │ │ │ ├── 83 │ │ │ │ ├── 07d93a155903a5c49576583f0ce1f6ff897c0e │ │ │ │ ├── 6b8b82b26cab22eaaed8820877c76d6c8bca19 │ │ │ │ └── 824a8c6658768e2013905219cc8c64cc3d9a2e │ │ │ ├── 84 │ │ │ │ ├── 9619b03ae540acee4d1edec96b86993da6b497 │ │ │ │ └── de84f8f3a6d63e636ee9ad81f4b80512fa9bbe │ │ │ ├── 86 │ │ │ │ └── 088dae8bade454995b21a1c88107b0e1accdab │ │ │ ├── 87 │ │ │ │ └── b4926260d77a3b851e71ecce06839bd650b231 │ │ │ ├── 88 │ │ │ │ └── e185910a15cd13bdf44854ad037f4842b03b29 │ │ │ ├── 90 │ │ │ │ └── a336c7dacbe295159413559b0043b8bdc60d57 │ │ │ ├── 91 │ │ │ │ ├── 2b2d7819cf9c1029e414883857ed61d597a1a5 │ │ │ │ ├── 8bb3e09090a9995d48af9a2a6296d7e6088d1c │ │ │ │ └── f44111cb1cb1358ac6944ad356ca1738813ea1 │ │ │ ├── 92 │ │ │ │ └── 7d4943cdbdc9a667db8e62cfd0a41870235c51 │ │ │ ├── 93 │ │ │ │ └── 77fccdb210540b8c0520cc6e80eb632c20bd25 │ │ │ ├── 94 │ │ │ │ ├── 4f5dd1a867cab4c2bbcb896493435cae1dcc1a │ │ │ │ └── 8ba6e701c1edab0c2d394fb7c5538334129793 │ │ │ ├── 95 │ │ │ │ ├── 646149ab6b6ba6edc83cff678582538b457b2b │ │ │ │ └── 9de65e568274120fdf9e3af9f77b1550122149 │ │ │ ├── 96 │ │ │ │ ├── 8ca794a4597f7f6abbb2b8d940b4078a0f3fd4 │ │ │ │ └── bca8d4f05cc4c5e33e4389f80a1309e86fe054 │ │ │ ├── 97 │ │ │ │ └── 7c696519c5a3004c5f1d15d60c89dbeb8f235f │ │ │ ├── 98 │ │ │ │ ├── ba4205fcf31f5dd93c916d35fe3f3b3d0e6714 │ │ │ │ └── d52d07c0b0bbf2b46548f6aa521295c2cb55db │ │ │ ├── 99 │ │ │ │ └── b4f7e4f24470fa06b980bc21f1095c2a9425c0 │ │ │ ├── 00 │ │ │ │ ├── 5b6fcc8fec71d2550bef8462d169b3c26aa14b │ │ │ │ ├── 9b9cab6fdac02915a88ecd078b7a792ed802d8 │ │ │ │ └── c7d33f1ffa79d19c2272b370fcaeaadba49c08 │ │ │ ├── 01 │ │ │ │ └── f149e1b8f84bd8896aaff6d6b22af88459ded0 │ │ │ ├── 02 │ │ │ │ ├── 04a84f822acbf6386b36d33f1f6bc68bbbf858 │ │ │ │ └── 251f990ca8e92e7ae61d3426163fa821c64001 │ │ │ ├── 03 │ │ │ │ ├── 21415405cb906c46869919af56d51dbbe5e85c │ │ │ │ ├── 2ebc5ab85d9553bb187d3cd40875ff23a63ed0 │ │ │ │ ├── b87706555accbf874ccd410dbda01e8e70a67f │ │ │ │ └── dad1005e5d06d418f50b12e0bcd48ff2306a03 │ │ │ ├── 05 │ │ │ │ ├── 1ffd7901a442faf56b226161649074f15c7c47 │ │ │ │ ├── 8541fc37114bfc1dddf6bd6bffc7fae5c2e6fe │ │ │ │ └── f3c1a2a56ca95c3d2ef28dc9ddf32b5cd6c91c │ │ │ ├── 07 │ │ │ │ ├── a759da919f737221791d542f176ab49c88837f │ │ │ │ └── c514b04698e068892b31c8d352b85813b99c6e │ │ │ ├── 09 │ │ │ │ ├── 055301463b7f2f8ee5d368f8ed5c0a40ad8515 │ │ │ │ ├── 17bb159596aea4d295f4857da77e8f96b3c7dc │ │ │ │ ├── 2ce8682d7f3a2a3a769a6daca58950168ba5c4 │ │ │ │ ├── 3bebf072dd4bbba88833667d6ffe454df199e1 │ │ │ │ └── 768bed22680cdb0859683fa9677ccc8d5a25c1 │ │ │ ├── 0a │ │ │ │ └── 75d9aac1dc84fb5aa51f7325c0ab53242ddef7 │ │ │ ├── 0c │ │ │ │ └── fd6c54ef6532d862408f562309dc9c74a401e8 │ │ │ ├── 0d │ │ │ │ ├── 52e3a556e189ba0948ae56780918011c1b167d │ │ │ │ └── 872f8e871a30208305978ecbf9e66d864f1638 │ │ │ ├── 0e │ │ │ │ └── c5f433959cd46177f745903353efb5be08d151 │ │ │ ├── 0f │ │ │ │ └── 3fc5dddc8964b9ac1040d0e957f9eb02d9efb3 │ │ │ ├── 1a │ │ │ │ └── 010b1c0f081b2e8901d55307a15c29ff30af0e │ │ │ ├── 1c │ │ │ │ ├── 51d885170f57a0c4e8c69ff6363d91a5b51f85 │ │ │ │ └── ff9ec6a47a537380dedfdd17c9e76d74259a2b │ │ │ ├── 1e │ │ │ │ └── 4ff029aee68d0d69ef9eb6efa6cbf1ec732f99 │ │ │ ├── 1f │ │ │ │ └── 81433e3161efbf250576c58fede7f6b836f3d3 │ │ │ ├── 2b │ │ │ │ ├── 0de5dc27505dcdd83a75c8bf1fcd9462cd7add │ │ │ │ ├── 5f1f181ee3b58ea751f5dd5d8f9b445520a136 │ │ │ │ ├── d0a343aeef7a2cf0d158478966a6e587ff3863 │ │ │ │ └── fdd7e1b6c6ae993f23dfe8e84a8e06a772fa2a │ │ │ ├── 2d │ │ │ │ └── a538570bc1e5b2c3e855bf702f35248ad0735f │ │ │ ├── 2f │ │ │ │ ├── 2e37b7ebbae467978610896ca3aafcdad2ee67 │ │ │ │ ├── 4024ce528d36d8670c289cce5a7963e625bb0c │ │ │ │ ├── 56120107d680129a5d9791b521cb1e73a2ed31 │ │ │ │ └── 598248eeccfc27e5ca44d9d96383f6dfea7b16 │ │ │ ├── 3b │ │ │ │ ├── 47b031b3e55ae11e14a05260b1c3ffd6838d55 │ │ │ │ └── bf0bf59b20df5d5fc58b9fc1dc07be637c301f │ │ │ ├── 3e │ │ │ │ ├── f4d30382ca33fdeba9fda895a99e0891ba37aa │ │ │ │ └── f9bfe82f9635518ae89152322f3b46fd4ba25b │ │ │ ├── 4a │ │ │ │ └── 9550ebcc97ce22b22f45af7b829bb030d003f5 │ │ │ ├── 4b │ │ │ │ ├── 253da36a0ae8bfce63aeabd8c5b58429925594 │ │ │ │ ├── 48deed3a433909bfd6b6ab3d4b91348b6af464 │ │ │ │ └── 825dc642cb6eb9a060e54bf8d69288fbee4904 │ │ │ ├── 4c │ │ │ │ ├── 9fac0707f8d4195037ae5a681aa48626491541 │ │ │ │ └── a408a8c88655f7586a1b580be6fad138121e98 │ │ │ ├── 4e │ │ │ │ ├── 0d9401aee78eb345a8685a859d37c8c3c0bbed │ │ │ │ ├── 886e602529caa9ab11d71f86634bd1b6e0de10 │ │ │ │ └── b04c9e79e88f6640d01ff5b25ca2a60764f216 │ │ │ ├── 4f │ │ │ │ └── e93c0ec83eb6305cbace3dace88ecee1b63cb6 │ │ │ ├── 5c │ │ │ │ ├── 2411f8075f48a6b2fdb85ebc0d371747c4df15 │ │ │ │ ├── 341ead2ba6f2af98ce5ec3fe84f6b6d2899c0d │ │ │ │ └── 3b68a71fc4fa5d362fd3875e53137c6a5ab7a5 │ │ │ ├── 5d │ │ │ │ ├── c1018e90b19654bee986b7a0c268804d39659d │ │ │ │ └── dd0fe66f990dc0e5cf9fec6d9b465240e9537f │ │ │ ├── 5e │ │ │ │ └── b7bb6a146eb3c7fd3990b240a2308eceb1cf8d │ │ │ ├── 5f │ │ │ │ └── bfbdc04b4eca46f54f4853a3c5a1dce28f5165 │ │ │ ├── 6a │ │ │ │ └── e1a3967031a42cf955d9d5c2395211ac82f6cf │ │ │ ├── 6b │ │ │ │ └── 7e37be8ce0b897093f2878a9dcd8f396beda2c │ │ │ ├── 6c │ │ │ │ └── 06dcd163587c2cc18be44857e0b71116382aeb │ │ │ ├── 6e │ │ │ │ └── 3b9eb35214d4e31ed5789afc7d520ac798ce55 │ │ │ ├── 6f │ │ │ │ ├── 32739c3724d1d5f855299309f388606f407468 │ │ │ │ ├── a33014764bf1120a454eb8437ae098238e409b │ │ │ │ └── be9fb85c86d7d1435f728da418bdff52c640a9 │ │ │ ├── 7a │ │ │ │ ├── a3edf2bcfee22398e6b55295aa56366b7aaf76 │ │ │ │ └── f14d9c679baaef35555095f4f5d33e9a569ab9 │ │ │ ├── 7c │ │ │ │ ├── 04ca611203ed320c5f495b9813054dd23be3be │ │ │ │ ├── 2c5228c9e90170d4a35e6558e47163daf092e5 │ │ │ │ └── b63eed597130ba4abb87b3e544b85021905520 │ │ │ ├── 7e │ │ │ │ └── 2d058d5fedf8329db44db4fac610d6b1a89159 │ │ │ ├── 7f │ │ │ │ └── 7a2da58126226986d71c6ddfab4afba693280d │ │ │ ├── 8a │ │ │ │ ├── ad9d0ea334951da47b621a475b39cc6ed759bf │ │ │ │ └── ae714f7d939309d7f132b30646d96743134a9f │ │ │ ├── 8b │ │ │ │ ├── 095d8fd01594f4d14454d073e3ac57b9ce485f │ │ │ │ ├── 5b53cb2aa9ceb1139f5312fcfa3cc3c5a47c9a │ │ │ │ ├── 7cd60d49ce3a1a770ece43b7d29b5cf462a33a │ │ │ │ └── fb012a6d809e499bd8d3e194a3929bc8995b93 │ │ │ ├── 8c │ │ │ │ └── 749d9968d4b10dcfb06c9f97d0e5d92d337071 │ │ │ ├── 8f │ │ │ │ └── 4433f8593ddd65b7dd43dd4564d841f4d9c8aa │ │ │ ├── 9a │ │ │ │ ├── 301fbe6fada7dcb74fcd7c20269b5c743459a7 │ │ │ │ └── f731fa116d1eb9a6c0109562472cfee6f5a979 │ │ │ ├── 9c │ │ │ │ └── 0b6c34ef379a42d858f03fef38630f476b9102 │ │ │ ├── 9e │ │ │ │ ├── 7f4359c469f309b6057febf4c6e80742cbed5b │ │ │ │ └── fe7723802d4305142eee177e018fee1572c4f4 │ │ │ ├── 9f │ │ │ │ └── 74397a3397b3585faf09e9926b110d7f654254 │ │ │ ├── a0 │ │ │ │ └── 31a28ae70e33a641ce4b8a8f6317f1ab79dee4 │ │ │ ├── a3 │ │ │ │ ├── 9a620dae5bc8b4e771cd4d251b7d080401a21e │ │ │ │ └── fabece9eb8748da810e1e08266fef9b7136ad4 │ │ │ ├── a4 │ │ │ │ ├── 1b1bb6d0be3c22fb654234c33b428e15c8cc27 │ │ │ │ └── 3150a738849c59376cf30bb2a68348a83c8f48 │ │ │ ├── a5 │ │ │ │ └── 563304ddf6caba25cb50323a2ea6f7dbfcadca │ │ │ ├── a7 │ │ │ │ ├── 08b253bd507417ec42d1467a7fd2d7519c4956 │ │ │ │ ├── 65fb87eb2f7a1920b73b2d5a057f8f8476a42b │ │ │ │ ├── 7a56a49f8f3ae242e02717f18ebbc60c5cc543 │ │ │ │ └── dbfcbfc1a60709cb80b5ca24539008456531d0 │ │ │ ├── a8 │ │ │ │ ├── 02e06f1782a9645b9851bc7202cee74a8a4972 │ │ │ │ └── 87dd39ad3edd610fc9083dcb61e40ab50673d1 │ │ │ ├── a9 │ │ │ │ └── 0bc3fb6f15181972a2959a921429efbd81a473 │ │ │ ├── ab │ │ │ │ ├── 40af3cb8a3ed2e2843e96d9aa7871336b94573 │ │ │ │ ├── 6c44a2e84492ad4b41bb6bac87353e9d02ac8b │ │ │ │ └── 929391ac42572f92110f3deeb4f0844a951e22 │ │ │ ├── ac │ │ │ │ └── 4045f965119e6998f4340ed0f411decfb3ec05 │ │ │ ├── ad │ │ │ │ ├── 01aebfdf2ac13145efafe3f9fcf798882f1730 │ │ │ │ ├── 26b598134264fd284292cb233fc0b2f25851da │ │ │ │ ├── a14492498136771f69dd451866cabcb0e9ef9a │ │ │ │ └── a55a45d14527dc3dfc714ea1c65d2e1e6fbe87 │ │ │ ├── b2 │ │ │ │ └── d399ae15224e1d58066e3c8df70ce37de7a656 │ │ │ ├── b4 │ │ │ │ └── 2712cfe99a1a500b2a51fe984e0b8a7702ba11 │ │ │ ├── b6 │ │ │ │ ├── 9fe837e4cecfd4c9a40cdca7c138468687df07 │ │ │ │ └── f610aef53bd343e6c96227de874c66f00ee8e8 │ │ │ ├── b7 │ │ │ │ └── a2576f9fc20024ac9ef17cb134acbd1ac73127 │ │ │ ├── b8 │ │ │ │ └── a3a806d3950e8c0a03a34f234a92eff0e2c68d │ │ │ ├── ba │ │ │ │ └── cac9b3493509aa15e1730e1545fc0919d1dae0 │ │ │ ├── bc │ │ │ │ ├── 744705e1d8a019993cf88f62bc4020f1b80919 │ │ │ │ └── 95c75d59386147d1e79a87c33068d8dbfd71f2 │ │ │ ├── bd │ │ │ │ ├── 593285fc7fe4ca18ccdbabf027f5d689101452 │ │ │ │ ├── 867fbae2faa80b920b002b80b1c91bcade7784 │ │ │ │ └── 9cb4cd0a770cb9adcb5fce212142ef40ea1c35 │ │ │ ├── be │ │ │ │ └── f6e37b3ee632ba74159168836f382fed21d77d │ │ │ ├── c0 │ │ │ │ └── 6a9be584ac49aa02c5551312d9e2982c91df10 │ │ │ ├── c1 │ │ │ │ ├── b17981db0840109a820dae8674ee29684134ff │ │ │ │ └── b6a51bbb87c2f82b161412c3d20b59fc69b090 │ │ │ ├── c3 │ │ │ │ ├── 5dee9bcc0e989f3b0c40f68372a9a51b6c4e6a │ │ │ │ └── d02eeef75183df7584d8d13ac03053910c1301 │ │ │ ├── c4 │ │ │ │ └── efe31e9decccc8b2b4d3df9aac2cdfe2995618 │ │ │ ├── c5 │ │ │ │ ├── 0d0f1cb60b8b0fe1615ad20ace557e9d68d7bd │ │ │ │ └── bbe550b9f09444bdddd3ecf3d97c0b42aa786c │ │ │ ├── c6 │ │ │ │ ├── 07fc30883e335def28cd686b51f6cfa02b06ec │ │ │ │ └── 92ecf62007c0ac9fb26e2aa884de2933de15ed │ │ │ ├── c8 │ │ │ │ └── f06f2e3bb2964174677e91f0abead0e43c9e5d │ │ │ ├── c9 │ │ │ │ ├── 174cef549ec94ecbc43ef03cdc775b4950becb │ │ │ │ └── 4b27e41064c521120627e07e2035cca1d24ffa │ │ │ ├── ca │ │ │ │ ├── b2cf23998b40f1af2d9d9a756dc9e285a8df4b │ │ │ │ └── ff6b7d44973f53e3e0cf31d0d695188b19aec6 │ │ │ ├── cb │ │ │ │ ├── 491780d82e46dc88a065b965ab307a038f2bc2 │ │ │ │ └── 6693a788715b82440a54e0eacd19ba9f6ec559 │ │ │ ├── cc │ │ │ │ ├── 338e4710c9b257106b8d16d82f86458d5beaf1 │ │ │ │ └── 3e3009134cb88014129fc8858d1101359e5e2f │ │ │ ├── ce │ │ │ │ ├── 8860d49e3bea6fd745874a01b7c3e46da8cbc3 │ │ │ │ └── e656c392ad0557b3aae0fb411475c206e2926f │ │ │ ├── cf │ │ │ │ └── 8c5cc8a85a1ff5a4ba51e0bc7cf5665669924d │ │ │ ├── d0 │ │ │ │ ├── 7ec190c306ec690bac349e87d01c4358e49bb2 │ │ │ │ └── d4594e16f2e19107e3fa7ea63e7aaaff305ffb │ │ │ ├── d2 │ │ │ │ └── f8637f2eab2507a1e13cbc9df4729ec386627e │ │ │ ├── d3 │ │ │ │ ├── 3cedf513c059e0515653fa2c2e386631387a05 │ │ │ │ ├── 719a5ae8e4d92276b5313ce976f6ee5af2b436 │ │ │ │ ├── 7aa3bbfe1c0c49b909781251b956dbabe85f96 │ │ │ │ └── 7ad72a2052685fc6201c2af90103ad42d2079b │ │ │ ├── d4 │ │ │ │ ├── 207f77243500bec335ab477f9227fcdb1e271a │ │ │ │ └── 27e0b2e138501a3d15cc376077a3631e15bd46 │ │ │ ├── d5 │ │ │ │ ├── 093787ef302b941b6aab081b99fb4880038bd8 │ │ │ │ ├── a61b0b4992a4f0caa887fa08b52431e727bb6f │ │ │ │ ├── b6fc965c926a1bfc9ee456042b94088b5c5d21 │ │ │ │ └── ec1152fe25e9fec00189eb00b3db71db24c218 │ │ │ ├── d6 │ │ │ │ ├── 42b9770c66bba94a08df09b5efb095001f76d7 │ │ │ │ ├── 462fa3f5292857db599c54aea2bf91616230c5 │ │ │ │ └── cf6c7741b3316826af1314042550c97ded1d50 │ │ │ ├── d7 │ │ │ │ └── 308cc367b2cc23f710834ec1fd8ffbacf1b460 │ │ │ ├── d8 │ │ │ │ ├── 74671ef5b20184836cb983bb273e5280384d0b │ │ │ │ ├── dec75ff2f8b41d1c5bfef0cd57b7300c834f66 │ │ │ │ └── fa77b6833082c1ea36b7828a582d4c43882450 │ │ │ ├── d9 │ │ │ │ └── 63979c237d08b6ba39062ee7bf64c7d34a27f8 │ │ │ ├── da │ │ │ │ └── 178208145ef585a1bd5ca5f4c9785d738df2cf │ │ │ ├── db │ │ │ │ └── 6261a7c65c7fd678520c9bb6f2c47582ab9ed5 │ │ │ ├── dd │ │ │ │ ├── 2ae5ab264e5592aa754235d5ad5eac8f0ecdfd │ │ │ │ └── 9a570c3400e6e07bc4d7651d6e20b08926b3d9 │ │ │ ├── de │ │ │ │ └── 872ee3618b894992e9d1e18ba2ebe256a112f9 │ │ │ ├── df │ │ │ │ └── e3f22baa1f6fce5447901c3086bae368de6bdd │ │ │ ├── e0 │ │ │ │ └── 67f9361140f19391472df8a82d6610813c73b7 │ │ │ ├── e1 │ │ │ │ ├── 129b3cfb5898e0fbd606e0cb80b2755e50d161 │ │ │ │ └── 7ace1492648c9dc5701bad5c47af9d1b60c4e9 │ │ │ ├── e2 │ │ │ │ └── c6abbd55fed5ac71a5f2751e29b4a34726a595 │ │ │ ├── e3 │ │ │ │ ├── 1e7ad3ed298f24e383c4950f4671993ec078e4 │ │ │ │ └── 76fbdd06ebf021c92724da9f26f44212734e3e │ │ │ ├── e4 │ │ │ │ ├── 9f917b448d1340b31d76e54ba388268fd4c922 │ │ │ │ └── f618a2c3ed0669308735727df5ebf2447f022f │ │ │ ├── e5 │ │ │ │ └── 060729746ca9888239cba08fdcf4bee907b406 │ │ │ ├── e6 │ │ │ │ └── 5a9bb2af9f4c2d1c375dd0f8f8a46cf9c68812 │ │ │ ├── e8 │ │ │ │ └── 107f24196736b870a318a0e28f048e29f6feff │ │ │ ├── e9 │ │ │ │ ├── 2cdb7017dc6c5aed25cb4202c5b0104b872246 │ │ │ │ ├── ad6ec3e38364a3d07feda7c4197d4d845c53b5 │ │ │ │ └── f48beccc62d535739bfbdebe0a55ed716d8366 │ │ │ ├── eb │ │ │ │ └── c09d0137cfb0c26697aed0109fb943ad906f3f │ │ │ ├── ec │ │ │ │ └── 67e5a86adff465359f1c8f995e12dbdfa08d8a │ │ │ ├── ed │ │ │ │ └── 9523e62e453e50dd9be1606af19399b96e397a │ │ │ ├── ee │ │ │ │ ├── 1d6f164893c1866a323f072eeed36b855656be │ │ │ │ ├── 3fa1b8c00aff7fe02065fdb50864bb0d932ccf │ │ │ │ └── a9286df54245fea72c5b557291470eb825f38f │ │ │ ├── ef │ │ │ │ ├── 58fdd8086c243bdc81f99e379acacfd21d32d6 │ │ │ │ ├── c499524cf105d5264ac7fc54e07e95764e8075 │ │ │ │ └── c9121fdedaf08ba180b53ebfbcf71bd488ed09 │ │ │ ├── f0 │ │ │ │ ├── 053b8060bb3f0be5cbcc3147a07ece26bf097e │ │ │ │ └── ce2b8e4986084d9b308fb72709e414c23eb5e6 │ │ │ ├── f2 │ │ │ │ ├── 0c9063fa0bda9a397c96947a7b687305c49753 │ │ │ │ ├── 9e7fb590551095230c6149cbe72f2e9104a796 │ │ │ │ └── e1550a0c9e53d5811175864a29536642ae3821 │ │ │ ├── f3 │ │ │ │ ├── 293571dcd708b6a3faf03818cd2844d000e198 │ │ │ │ └── f1164b68b57b1995b658a828320e6df3081fae │ │ │ ├── f4 │ │ │ │ ├── 15caf3fcad16304cb424b67f0ee6b12dc03aae │ │ │ │ └── 8097eb340dc5a7cae55aabcf1faf4548aa821f │ │ │ ├── f5 │ │ │ │ ├── 504f36e6f4eb797a56fc5bac6c6c7f32969bf2 │ │ │ │ ├── b50c85a87cac64d7eb3254cdd1aec9564c0293 │ │ │ │ └── f9dd5886a6ee20272be0aafc790cba43b31931 │ │ │ ├── f6 │ │ │ │ ├── 65b45cde9b568009c6e6b7b568e89cfe717df8 │ │ │ │ └── be049e284c0f9dcbbc745543885be3502ea521 │ │ │ ├── f7 │ │ │ │ └── c332bd4d4d4b777366cae4d24d1687477576bf │ │ │ ├── f8 │ │ │ │ └── 958bdf4d365a84a9a178b1f5f35ff1dacbd884 │ │ │ ├── fa │ │ │ │ ├── c03f2c5139618d87d53614c153823bf1f31396 │ │ │ │ └── da9356aa3f74622327a3038ae9c6f92e1c5c1d │ │ │ ├── fb │ │ │ │ └── 738a106cfd097a4acb96ce132ecb1ad6c46b03 │ │ │ ├── fc │ │ │ │ ├── 4c636d6515e9e261f9260dbcf3cc6eca97ea08 │ │ │ │ ├── 7d7b805f7a9428574f4f802b2e34cd20ab9d99 │ │ │ │ └── 90237dc4891fa6c69827fc465632225e391618 │ │ │ ├── fd │ │ │ │ ├── 57d2d6770fad8e9959124793a17f441b571e66 │ │ │ │ └── 89f8cffb663ac89095a0f9764902e93ceaca6a │ │ │ ├── fe │ │ │ │ └── 5407fc50a53aecb41d1a6e9ea7b612e581af87 │ │ │ └── ff │ │ │ │ ├── 49d07869831ad761bbdaea026086f8789bcb00 │ │ │ │ └── b312248d607284c290023f9502eea010d34efd │ │ │ └── refs │ │ │ └── heads │ │ │ ├── branch │ │ │ ├── df_ancestor │ │ │ ├── df_side1 │ │ │ ├── df_side2 │ │ │ ├── ff_branch │ │ │ ├── master │ │ │ ├── octo1 │ │ │ ├── octo2 │ │ │ ├── octo3 │ │ │ ├── octo4 │ │ │ ├── octo5 │ │ │ ├── octo6 │ │ │ ├── previous │ │ │ ├── rename_conflict_ancestor │ │ │ ├── rename_conflict_ours │ │ │ ├── rename_conflict_theirs │ │ │ ├── renames1 │ │ │ ├── renames2 │ │ │ ├── submodules │ │ │ ├── submodules-branch │ │ │ ├── submodules-branch2 │ │ │ ├── trivial-10 │ │ │ ├── trivial-10-branch │ │ │ ├── trivial-11 │ │ │ ├── trivial-11-branch │ │ │ ├── trivial-13 │ │ │ ├── trivial-13-branch │ │ │ ├── trivial-14 │ │ │ ├── trivial-14-branch │ │ │ ├── trivial-2alt │ │ │ ├── trivial-2alt-branch │ │ │ ├── trivial-3alt │ │ │ ├── trivial-3alt-branch │ │ │ ├── trivial-4 │ │ │ ├── trivial-4-branch │ │ │ ├── trivial-5alt-1 │ │ │ ├── trivial-5alt-1-branch │ │ │ ├── trivial-5alt-2 │ │ │ ├── trivial-5alt-2-branch │ │ │ ├── trivial-6 │ │ │ ├── trivial-6-branch │ │ │ ├── trivial-7 │ │ │ ├── trivial-7-branch │ │ │ ├── trivial-8 │ │ │ ├── trivial-8-branch │ │ │ ├── trivial-9 │ │ │ ├── trivial-9-branch │ │ │ └── unrelated │ ├── packbuilder_testrepo_wd │ │ ├── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── objects │ │ │ │ ├── 87 │ │ │ │ │ └── 2129051d644790636b416d1ef1ec830c5f6b90 │ │ │ │ ├── 88 │ │ │ │ │ └── e38705fdbd3608cddbe904b67c731f3234c45b │ │ │ │ ├── cc │ │ │ │ │ └── 628ccd10742baea8241c5924df992b5c019f71 │ │ │ │ └── ce │ │ │ │ │ └── 013625030ba8dba906f756967f9e9ca394464a │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── hello.txt │ │ └── world.txt │ ├── revert_testrepo_wd │ │ ├── a.txt │ │ ├── b.txt │ │ ├── c.txt │ │ └── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── objects │ │ │ ├── info │ │ │ │ └── packs │ │ │ └── pack │ │ │ │ ├── pack-29d1a036908407037b737d1cb436707551c3cedf.idx │ │ │ │ └── pack-29d1a036908407037b737d1cb436707551c3cedf.pack │ │ │ └── refs │ │ │ └── heads │ │ │ ├── master │ │ │ ├── revert │ │ │ ├── revert_merge │ │ │ └── revert_rename │ ├── shallow.git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ └── pack │ │ │ │ ├── pack-706e49b161700946489570d96153e5be4dc31ad4.idx │ │ │ │ └── pack-706e49b161700946489570d96153e5be4dc31ad4.pack │ │ ├── packed-refs │ │ ├── refs │ │ │ └── .gitkeep │ │ └── shallow │ ├── submodule_small_wd │ │ ├── .gitmodules │ │ └── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ └── exclude │ │ │ ├── objects │ │ │ ├── 31 │ │ │ │ └── be1072bafa80f8b4386eb35b90e284d9ee672d │ │ │ ├── 63 │ │ │ │ └── 2218a6cacefe3b49ed111704df72ea7b08b4d5 │ │ │ ├── 75 │ │ │ │ └── df0ce58d6436371c3c2271649a03f540f30fd6 │ │ │ ├── 07 │ │ │ │ └── 406ba95d0a865a508910605a0c7d7a773705f6 │ │ │ └── 7d │ │ │ │ └── 3aeaa887efe60fb664ba92a203a4fb50249f5b │ │ │ └── refs │ │ │ └── heads │ │ │ ├── alternate │ │ │ └── master │ ├── submodule_target_wd │ │ ├── README.txt │ │ ├── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 17 │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ ├── 41 │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ ├── 48 │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ ├── 73 │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ ├── 78 │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ ├── 88 │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ ├── 06 │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ ├── 0e │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ ├── 5e │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ ├── 6b │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ └── d0 │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ └── file_to_modify │ ├── submodule_wd │ │ ├── README.txt │ │ ├── dot_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── modules │ │ │ │ ├── sm_added_and_uncommited │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_branch_only │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_changed_file │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_changed_head │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 77 │ │ │ │ │ │ │ └── fb0ed3e58568d6ad362c78de08ab8649d76e29 │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 3d │ │ │ │ │ │ │ └── 9386c507f6b093471a3e324085657a3c2b4247 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ ├── 8e │ │ │ │ │ │ │ └── b1e637ed9fc8e5454fa20d38f809091f9395f4 │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_changed_index │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ ├── a0 │ │ │ │ │ │ │ └── 2d31770687965547ab7a04cee199b29ee458d6 │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_changed_untracked_file │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 48 │ │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ │ ├── 73 │ │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ ├── sm_missing_commits │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ │ ├── 41 │ │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ │ ├── 78 │ │ │ │ │ │ │ └── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ ├── 88 │ │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ │ ├── 06 │ │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ │ ├── 0e │ │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ │ ├── 5e │ │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ │ ├── 6b │ │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ │ └── d0 │ │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ │ ├── heads │ │ │ │ │ │ └── master │ │ │ │ │ │ └── remotes │ │ │ │ │ │ └── origin │ │ │ │ │ │ └── HEAD │ │ │ │ └── sm_unchanged │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── config │ │ │ │ │ ├── index │ │ │ │ │ ├── objects │ │ │ │ │ ├── 17 │ │ │ │ │ │ └── d0ece6e96460a06592d9d9d000de37ba4232c5 │ │ │ │ │ ├── 41 │ │ │ │ │ │ └── bd4bc3df978de695f67ace64c560913da11653 │ │ │ │ │ ├── 48 │ │ │ │ │ │ └── 0095882d281ed676fe5b863569520e54a7d5c0 │ │ │ │ │ ├── 73 │ │ │ │ │ │ └── ba924a80437097795ae839e66e187c55d3babf │ │ │ │ │ ├── 78 │ │ │ │ │ │ ├── 0d7397f5e8f8f477fb55b7af3accc2154b2d4a │ │ │ │ │ │ └── 9efbdadaa4a582778d4584385495559ea0994b │ │ │ │ │ ├── 88 │ │ │ │ │ │ └── 34b635dd468a83cb012f6feace968c1c9f5d6e │ │ │ │ │ ├── 06 │ │ │ │ │ │ └── 362fe2fdb7010d0e447b4fb450d405420479a1 │ │ │ │ │ ├── 0e │ │ │ │ │ │ └── 6a3ca48bd47cfe67681acf39aa0b10a0b92484 │ │ │ │ │ ├── 5e │ │ │ │ │ │ └── 4963595a9774b90524d35a807169049de8ccad │ │ │ │ │ ├── 6b │ │ │ │ │ │ └── 31c659545507c381e9cd34ec508f16c04e149e │ │ │ │ │ └── d0 │ │ │ │ │ │ └── 5f2cd5cc77addf68ed6f50d622c9a4f732e6c5 │ │ │ │ │ ├── packed-refs │ │ │ │ │ └── refs │ │ │ │ │ ├── heads │ │ │ │ │ └── master │ │ │ │ │ └── remotes │ │ │ │ │ └── origin │ │ │ │ │ └── HEAD │ │ │ ├── objects │ │ │ │ ├── 13 │ │ │ │ │ └── 921096a46cb66610badba272f8211346eaf8f3 │ │ │ │ ├── 14 │ │ │ │ │ └── fe9ccf104058df25e0a08361c4494e167ef243 │ │ │ │ ├── 22 │ │ │ │ │ └── ce3e0311dda73a5992d54a4a595518d3876ea7 │ │ │ │ ├── 25 │ │ │ │ │ └── 5546424b0efb847b1bfc91dbf7348b277f8970 │ │ │ │ ├── 42 │ │ │ │ │ └── cfb95cd01bf9225b659b5ee3edcc78e8eeb478 │ │ │ │ ├── 57 │ │ │ │ │ └── 958699c2dc394f81cfc76950e9c3ac3025c398 │ │ │ │ ├── 59 │ │ │ │ │ └── 01da4f1c67756eeadc5121d206bec2431f253b │ │ │ │ ├── 60 │ │ │ │ │ └── 7d96653d4d0a4f733107f7890c2e67b55b620d │ │ │ │ ├── 74 │ │ │ │ │ └── 84482eb8db738cafa696993664607500a3f2b9 │ │ │ │ ├── 87 │ │ │ │ │ ├── 3585b94bdeabccea991ea5e3ec1a277895b698 │ │ │ │ │ └── aa3a079302a662a9226af3c6e7f444815e3faf │ │ │ │ ├── 97 │ │ │ │ │ └── 4cf7c73de336b0c4e019f918f3cee367d72e84 │ │ │ │ ├── 09 │ │ │ │ │ └── 460e5b6cbcb05a3e404593c32a3aa7221eca0e │ │ │ │ ├── 2a │ │ │ │ │ └── 30f1e6f94b20917005a21273f65b406d0f8bad │ │ │ │ ├── 6b │ │ │ │ │ └── 94d06e586d4ed904d8c00a9de7d0afe0fc9c3c │ │ │ │ ├── 7b │ │ │ │ │ └── a4c5c3561daa5ab1a86215cfb0587e96d404d6 │ │ │ │ ├── 9d │ │ │ │ │ └── bc299bc013ea253583b40bf327b5a6e4037b89 │ │ │ │ ├── a4 │ │ │ │ │ └── aab482be687d2facec638781ded4aa1a92687a │ │ │ │ ├── a9 │ │ │ │ │ └── 104bf89e911387244ef499413960ba472066d9 │ │ │ │ ├── b6 │ │ │ │ │ └── 14088620bbdc1d29549d223ceba0f4419fd4cb │ │ │ │ ├── cf │ │ │ │ │ └── 27c0500009f6d12fd82d841ecf6a17b18ff812 │ │ │ │ ├── d4 │ │ │ │ │ └── 07f19e50c1da1ff584beafe0d6dac7237c5d06 │ │ │ │ ├── d9 │ │ │ │ │ └── 3e95571d92cceb5de28c205f1d5f3cc8b88bc8 │ │ │ │ ├── e3 │ │ │ │ │ └── b83bf274ee065eee48734cf8c6dfaf5e81471c │ │ │ │ ├── f5 │ │ │ │ │ └── 4414c25e6d24fe39f5c3f128d7c8a17bc23833 │ │ │ │ └── f9 │ │ │ │ │ └── 90a25a74d1a8281ce2ab018ea8df66795cd60b │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ ├── dev │ │ │ │ └── master │ │ ├── gitmodules │ │ ├── just_a_dir │ │ │ └── contents │ │ ├── just_a_file │ │ ├── not_submodule │ │ │ ├── README.txt │ │ │ └── dot_git │ │ │ │ ├── COMMIT_EDITMSG │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── index │ │ │ │ ├── info │ │ │ │ └── exclude │ │ │ │ ├── objects │ │ │ │ ├── 68 │ │ │ │ │ └── e92c611b80ee1ed8f38314ff9577f0d15b2444 │ │ │ │ ├── 71 │ │ │ │ │ └── ff9927d7c8a5639e062c38a7d35c433c424627 │ │ │ │ └── f0 │ │ │ │ │ └── 1d56b18efd353ef2bb93a4585d590a0847195e │ │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── sm_added_and_uncommited │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ │ ├── sm_changed_file │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ │ ├── sm_changed_head │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ │ ├── sm_changed_index │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ │ ├── sm_changed_untracked_file │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ ├── file_to_modify │ │ │ └── i_am_untracked │ │ ├── sm_missing_commits │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ │ └── sm_unchanged │ │ │ ├── README.txt │ │ │ ├── dot_git │ │ │ └── file_to_modify │ ├── testrepo.git │ │ ├── HEAD │ │ ├── config │ │ ├── head-tracker │ │ ├── index │ │ ├── objects │ │ │ ├── 13 │ │ │ │ └── 85f264afb75a56a5bec74243be9b367ba4ca08 │ │ │ ├── 18 │ │ │ │ ├── 1037049a54a1eb5fab404658a3a250b44335d7 │ │ │ │ └── 10dff58d8a660512d4832e740f692884338ccd │ │ │ ├── 25 │ │ │ │ └── 2846a95d7b031136d19f5a8a85ebed204cdbef │ │ │ ├── 27 │ │ │ │ └── 2a41cf2b22e57f2bc5bf6ef37b63568cd837e4 │ │ │ ├── 30 │ │ │ │ └── 415905d74c9ae026fda6b5f51e9ed64dd0e1a4 │ │ │ ├── 44 │ │ │ │ ├── 09de11e16118bc4ed32bd18e2991a77f94bf62 │ │ │ │ ├── 240004a63a598f5d2d876c78d7eb53756610f8 │ │ │ │ └── d5d1881ebcb31173b1f89ef7c2ea955c3b1a3b │ │ │ ├── 45 │ │ │ │ └── b983be36b73c0788dc9cbcb76cbb80fc7bb057 │ │ │ ├── 50 │ │ │ │ └── 3a16fd8476ab19a6caa2059190b276d9a2c37f │ │ │ ├── 53 │ │ │ │ └── 2740a931e8f9140b26b93cb0a2d81f6943741a │ │ │ ├── 58 │ │ │ │ └── 1f9824ecaf824221bd36edf5430f2739a7c4f5 │ │ │ ├── 59 │ │ │ │ └── cf25c488378bfc297518e2ba9786973ef15c38 │ │ │ ├── 71 │ │ │ │ └── 89b38caf261863c4440e15e6e71057535b6375 │ │ │ ├── 75 │ │ │ │ └── 057dd4114e74cca1d750d0aee1647c903cb60a │ │ │ ├── 81 │ │ │ │ └── 4889a078c031f61ed08ab5fa863aea9314344d │ │ │ ├── 84 │ │ │ │ └── 96071c1b46c854b31185ea97743be6a8774479 │ │ │ ├── 90 │ │ │ │ └── 2c60b555b350b1b02964a7fe7db04d6b96be2f │ │ │ ├── 97 │ │ │ │ └── a2da25da3bd50163b13f5bd91260ba3cbb8210 │ │ │ ├── 1a │ │ │ │ └── 550e416326cdb4a8e127a04dd69d7a01b11cf4 │ │ │ ├── 3d │ │ │ │ └── fd6fd25c22ef62c1657a305f05fdcdc74d5987 │ │ │ ├── 4a │ │ │ │ └── 202b346bb0fb0db7eff3cffeb3c70babbd2045 │ │ │ ├── 4c │ │ │ │ └── 062a6361ae6959e06292c1fa5e2822d9c96345 │ │ │ ├── 5b │ │ │ │ └── 5b025afb0b4c913b4c338a42934a3863bf3644 │ │ │ ├── 7b │ │ │ │ └── 4384978d2493e851f9cca7858815fac9b10980 │ │ │ ├── 7f │ │ │ │ └── 76480d939dc401415927ea7ef25c676b8ddb8f │ │ │ ├── 9b │ │ │ │ └── 0bea0f1e4eafeaf2068675b44837e5c0a04d41 │ │ │ ├── 9f │ │ │ │ ├── 1ee9b7f3b5cd0226f2d68c694d7fc4b96a0087 │ │ │ │ └── d738e8f7967c078dceed8190330fc8648ee56a │ │ │ ├── a4 │ │ │ │ └── a7dce85cf63874e984719f4fdd239f5145052f │ │ │ ├── a7 │ │ │ │ └── 1586c1dfe8a71c6cbf6c129f404c5642ff31bd │ │ │ ├── a8 │ │ │ │ └── 233120f6ad708f843d861ce2b7228ec4e3dec6 │ │ │ ├── b2 │ │ │ │ └── 5fa35b38051e4ae45d4222e795f9df2e43f1d1 │ │ │ ├── bb │ │ │ │ └── 65291c2f528ddcd2a3c950582449c57d196dec │ │ │ ├── be │ │ │ │ └── 3563ae3f795b2b4353bcce3a527ad0a4f7f644 │ │ │ ├── c4 │ │ │ │ └── 7800c7266a2be04c571c04d5a6614691ea99bd │ │ │ ├── c9 │ │ │ │ └── e302a78b5660de810c6a0161c8592ceed1ea5c │ │ │ ├── ce │ │ │ │ └── 0e5486643e1c66b1cca956dac54a2b204ed11b │ │ │ ├── e2 │ │ │ │ └── a6a7e5efdfdc0e27d13faa32ee9685b2e16576 │ │ │ ├── e6 │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ ├── f6 │ │ │ │ └── 0079018b664e4e79329a7ef9559c8d9e0378d1 │ │ │ ├── fa │ │ │ │ └── 49b077972391ad58037050f2a75f74e3671e92 │ │ │ ├── fd │ │ │ │ └── 093bff70906175335656e6ce6ae05783708765 │ │ │ └── pack │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.idx │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.pack │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack │ │ │ │ ├── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.idx │ │ │ │ └── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.pack │ │ ├── packed-refs │ │ └── refs │ │ │ ├── heads │ │ │ ├── br2 │ │ │ ├── master │ │ │ ├── packed-test │ │ │ └── test │ │ │ ├── notes │ │ │ ├── answer │ │ │ ├── answer2 │ │ │ └── commits │ │ │ └── tags │ │ │ ├── e90810b │ │ │ ├── lw │ │ │ ├── point_to_blob │ │ │ ├── tag_without_tagger │ │ │ └── test │ ├── testrepo_wd │ │ ├── 1 │ │ │ └── branch_file.txt │ │ ├── 1.txt │ │ ├── README │ │ ├── branch_file.txt │ │ ├── dot_git │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── logs │ │ │ │ ├── HEAD │ │ │ │ └── refs │ │ │ │ │ └── heads │ │ │ │ │ ├── logo │ │ │ │ │ └── master │ │ │ ├── objects │ │ │ │ ├── 13 │ │ │ │ │ └── 85f264afb75a56a5bec74243be9b367ba4ca08 │ │ │ │ ├── 15 │ │ │ │ │ └── d2ecc60893449f4fe4593dd51a4706dec212f5 │ │ │ │ ├── 16 │ │ │ │ │ └── bdf1dece5c56c92a9187550fafe0270a03a93a │ │ │ │ ├── 18 │ │ │ │ │ ├── 1037049a54a1eb5fab404658a3a250b44335d7 │ │ │ │ │ └── 10dff58d8a660512d4832e740f692884338ccd │ │ │ │ ├── 32 │ │ │ │ │ └── eab9cb1f450b5fe7ab663462b77d7f4b703344 │ │ │ │ ├── 33 │ │ │ │ │ └── a9574ff4dca3fbf68c6785859b80895c6b77b1 │ │ │ │ ├── 37 │ │ │ │ │ └── d22f870ffe688c0d1220fbbf1f06629c64142c │ │ │ │ ├── 45 │ │ │ │ │ └── b983be36b73c0788dc9cbcb76cbb80fc7bb057 │ │ │ │ ├── 46 │ │ │ │ │ └── 25a3628cb78970c57e23a2fe2574514ba403c7 │ │ │ │ ├── 50 │ │ │ │ │ └── 9d02afef0632c7f733ddcd62500b0538d9157f │ │ │ │ ├── 56 │ │ │ │ │ ├── 05472eb48cb4e60b5aa8810cc5ec8138026fad │ │ │ │ │ └── 26abf0f72e58d7a153368ba57db4c673c0e171 │ │ │ │ ├── 58 │ │ │ │ │ ├── 0c2111be43802dab11328176d94c391f1deae9 │ │ │ │ │ └── 1f9824ecaf824221bd36edf5430f2739a7c4f5 │ │ │ │ ├── 59 │ │ │ │ │ └── 2d3c869dbc4127fc57c189cb94f2794fa84e7e │ │ │ │ ├── 67 │ │ │ │ │ └── b8324ec2fefc01fd9d31d328116df0474e7acd │ │ │ │ ├── 72 │ │ │ │ │ └── 52fe2da2c4dd6d85231a150d0485ec46abaa7a │ │ │ │ ├── 74 │ │ │ │ │ └── 9a42f6ef33405e5ac16687963aebab8b78abd1 │ │ │ │ ├── 75 │ │ │ │ │ └── 057dd4114e74cca1d750d0aee1647c903cb60a │ │ │ │ ├── 79 │ │ │ │ │ └── 09961ae96accd75b6813d32e0fc1d6d52ec941 │ │ │ │ ├── 81 │ │ │ │ │ └── 4889a078c031f61ed08ab5fa863aea9314344d │ │ │ │ ├── 84 │ │ │ │ │ ├── 96071c1b46c854b31185ea97743be6a8774479 │ │ │ │ │ └── 9f67c87f926a81af895fc037c04ad85549d73f │ │ │ │ ├── 89 │ │ │ │ │ └── 657cd6da3ada7bfef880e6dfdb9732f28c272b │ │ │ │ ├── 92 │ │ │ │ │ └── 17230e462ada4319e332e2a4b2d325c2d60550 │ │ │ │ ├── 93 │ │ │ │ │ └── 5a81d39fd68adb3b7ba3fc60c9663f326435e3 │ │ │ │ ├── 04 │ │ │ │ │ └── c9b35f51fbff2338d5cdc959b23a93a14c5063 │ │ │ │ ├── 0a │ │ │ │ │ └── 99448e920a3615f33273047412949d09015ff8 │ │ │ │ ├── 4a │ │ │ │ │ └── 202b346bb0fb0db7eff3cffeb3c70babbd2045 │ │ │ │ ├── 4b │ │ │ │ │ └── e51d6fc0943aa42b635c762145ca209cf39771 │ │ │ │ ├── 4c │ │ │ │ │ └── 062a6361ae6959e06292c1fa5e2822d9c96345 │ │ │ │ ├── 4e │ │ │ │ │ └── 935b73cf0fe06c513267d517fc2e65fc0d100e │ │ │ │ ├── 5b │ │ │ │ │ └── 5b025afb0b4c913b4c338a42934a3863bf3644 │ │ │ │ ├── 6b │ │ │ │ │ └── 53f5d357f29607605ce2e612d2fda6693ff8d7 │ │ │ │ ├── 7b │ │ │ │ │ └── 4384978d2493e851f9cca7858815fac9b10980 │ │ │ │ ├── 7f │ │ │ │ │ └── 76480d939dc401415927ea7ef25c676b8ddb8f │ │ │ │ ├── 9f │ │ │ │ │ └── d738e8f7967c078dceed8190330fc8648ee56a │ │ │ │ ├── a1 │ │ │ │ │ └── 7e31b5f9b445610fe3bd9a08f04eee314b5595 │ │ │ │ ├── a4 │ │ │ │ │ ├── 47ba2ca8fffd46dece72f7db6faf324afb8fcd │ │ │ │ │ └── a7dce85cf63874e984719f4fdd239f5145052f │ │ │ │ ├── a7 │ │ │ │ │ └── 1586c1dfe8a71c6cbf6c129f404c5642ff31bd │ │ │ │ ├── a8 │ │ │ │ │ └── 233120f6ad708f843d861ce2b7228ec4e3dec6 │ │ │ │ ├── ab │ │ │ │ │ └── 38987d12dc243c103a432608648c78fc6651a1 │ │ │ │ ├── b2 │ │ │ │ │ └── 5fa35b38051e4ae45d4222e795f9df2e43f1d1 │ │ │ │ ├── b3 │ │ │ │ │ └── e375c923d50c589b11b6da4a769bdd7f6502e3 │ │ │ │ ├── b5 │ │ │ │ │ └── 9b86c5f4874aea5255bf14d67a5ce13c80265f │ │ │ │ ├── b7 │ │ │ │ │ └── 58c5bc1c8117c2a4c545dae2903e36360501c5 │ │ │ │ ├── be │ │ │ │ │ └── 3563ae3f795b2b4353bcce3a527ad0a4f7f644 │ │ │ │ ├── c4 │ │ │ │ │ └── 7800c7266a2be04c571c04d5a6614691ea99bd │ │ │ │ ├── c7 │ │ │ │ │ └── 69ecde1af25ba729b92be431570f32418c3ccd │ │ │ │ ├── ce │ │ │ │ │ └── 40c7a2a2a2d35827ff4de3feb284894ff6e29f │ │ │ │ ├── d0 │ │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ │ ├── da │ │ │ │ │ └── 6413144c9053a78c3406f440cdc9fcb037fcf9 │ │ │ │ ├── db │ │ │ │ │ └── 9c482bd00c69d8a2d12242cee5f981ea040140 │ │ │ │ ├── e5 │ │ │ │ │ └── d221fc5da11a3169bf503d76497c81be3207b6 │ │ │ │ ├── e6 │ │ │ │ │ ├── 8bcc7b5d6370fac1ea9929f4b6982a4ebb99a2 │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ ├── e7 │ │ │ │ │ └── 039e6d0e7dd4d4c1e2e8e5aa5306b2776436ca │ │ │ │ ├── e8 │ │ │ │ │ └── 953ab38d30b11c45b5ac7229fcef0ab4d603c6 │ │ │ │ ├── ec │ │ │ │ │ └── 9e401198937e33a8617be9f235a449728d9f6d │ │ │ │ ├── f2 │ │ │ │ │ └── e41136eac73c39554dede1fd7e67b12502d577 │ │ │ │ ├── f6 │ │ │ │ │ └── 0079018b664e4e79329a7ef9559c8d9e0378d1 │ │ │ │ ├── f7 │ │ │ │ │ └── 05abffe7015f2beacf2abe7a36583ebee3487e │ │ │ │ ├── f8 │ │ │ │ │ └── d44d712e0680d942a4015058dd84e382879fe2 │ │ │ │ ├── fa │ │ │ │ │ └── 49b077972391ad58037050f2a75f74e3671e92 │ │ │ │ ├── fd │ │ │ │ │ └── 093bff70906175335656e6ce6ae05783708765 │ │ │ │ └── pack │ │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.idx │ │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.pack │ │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx │ │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack │ │ │ │ │ ├── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.idx │ │ │ │ │ └── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.pack │ │ │ ├── packed-refs │ │ │ └── refs │ │ │ │ ├── heads │ │ │ │ ├── diff-test-cases │ │ │ │ ├── i-do-numbers │ │ │ │ ├── logo │ │ │ │ ├── master │ │ │ │ ├── track-local │ │ │ │ └── treesame_as_32eab │ │ │ │ └── remotes │ │ │ │ └── origin │ │ │ │ └── HEAD │ │ ├── modified_staged_file.txt │ │ ├── modified_unstaged_file.txt │ │ ├── new.txt │ │ ├── new_tracked_file.txt │ │ └── new_untracked_file.txt │ └── worktree │ │ ├── testrepo_wd │ │ ├── 1 │ │ │ └── branch_file.txt │ │ ├── 1.txt │ │ ├── README │ │ ├── branch_file.txt │ │ ├── dot_git │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── index │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── logs │ │ │ │ ├── HEAD │ │ │ │ └── refs │ │ │ │ │ └── heads │ │ │ │ │ ├── logo │ │ │ │ │ └── master │ │ │ ├── objects │ │ │ │ ├── 13 │ │ │ │ │ └── 85f264afb75a56a5bec74243be9b367ba4ca08 │ │ │ │ ├── 15 │ │ │ │ │ └── d2ecc60893449f4fe4593dd51a4706dec212f5 │ │ │ │ ├── 16 │ │ │ │ │ └── bdf1dece5c56c92a9187550fafe0270a03a93a │ │ │ │ ├── 18 │ │ │ │ │ ├── 1037049a54a1eb5fab404658a3a250b44335d7 │ │ │ │ │ └── 10dff58d8a660512d4832e740f692884338ccd │ │ │ │ ├── 32 │ │ │ │ │ └── eab9cb1f450b5fe7ab663462b77d7f4b703344 │ │ │ │ ├── 33 │ │ │ │ │ └── a9574ff4dca3fbf68c6785859b80895c6b77b1 │ │ │ │ ├── 37 │ │ │ │ │ └── d22f870ffe688c0d1220fbbf1f06629c64142c │ │ │ │ ├── 45 │ │ │ │ │ └── b983be36b73c0788dc9cbcb76cbb80fc7bb057 │ │ │ │ ├── 46 │ │ │ │ │ └── 25a3628cb78970c57e23a2fe2574514ba403c7 │ │ │ │ ├── 50 │ │ │ │ │ └── 9d02afef0632c7f733ddcd62500b0538d9157f │ │ │ │ ├── 56 │ │ │ │ │ ├── 05472eb48cb4e60b5aa8810cc5ec8138026fad │ │ │ │ │ └── 26abf0f72e58d7a153368ba57db4c673c0e171 │ │ │ │ ├── 58 │ │ │ │ │ ├── 0c2111be43802dab11328176d94c391f1deae9 │ │ │ │ │ └── 1f9824ecaf824221bd36edf5430f2739a7c4f5 │ │ │ │ ├── 59 │ │ │ │ │ └── 2d3c869dbc4127fc57c189cb94f2794fa84e7e │ │ │ │ ├── 67 │ │ │ │ │ └── b8324ec2fefc01fd9d31d328116df0474e7acd │ │ │ │ ├── 72 │ │ │ │ │ └── 52fe2da2c4dd6d85231a150d0485ec46abaa7a │ │ │ │ ├── 74 │ │ │ │ │ └── 9a42f6ef33405e5ac16687963aebab8b78abd1 │ │ │ │ ├── 75 │ │ │ │ │ └── 057dd4114e74cca1d750d0aee1647c903cb60a │ │ │ │ ├── 79 │ │ │ │ │ └── 09961ae96accd75b6813d32e0fc1d6d52ec941 │ │ │ │ ├── 81 │ │ │ │ │ └── 4889a078c031f61ed08ab5fa863aea9314344d │ │ │ │ ├── 84 │ │ │ │ │ ├── 96071c1b46c854b31185ea97743be6a8774479 │ │ │ │ │ └── 9f67c87f926a81af895fc037c04ad85549d73f │ │ │ │ ├── 89 │ │ │ │ │ └── 657cd6da3ada7bfef880e6dfdb9732f28c272b │ │ │ │ ├── 92 │ │ │ │ │ └── 17230e462ada4319e332e2a4b2d325c2d60550 │ │ │ │ ├── 93 │ │ │ │ │ └── 5a81d39fd68adb3b7ba3fc60c9663f326435e3 │ │ │ │ ├── 04 │ │ │ │ │ └── c9b35f51fbff2338d5cdc959b23a93a14c5063 │ │ │ │ ├── 0a │ │ │ │ │ └── 99448e920a3615f33273047412949d09015ff8 │ │ │ │ ├── 4a │ │ │ │ │ └── 202b346bb0fb0db7eff3cffeb3c70babbd2045 │ │ │ │ ├── 4b │ │ │ │ │ └── e51d6fc0943aa42b635c762145ca209cf39771 │ │ │ │ ├── 4c │ │ │ │ │ └── 062a6361ae6959e06292c1fa5e2822d9c96345 │ │ │ │ ├── 4e │ │ │ │ │ └── 935b73cf0fe06c513267d517fc2e65fc0d100e │ │ │ │ ├── 5b │ │ │ │ │ └── 5b025afb0b4c913b4c338a42934a3863bf3644 │ │ │ │ ├── 6b │ │ │ │ │ └── 53f5d357f29607605ce2e612d2fda6693ff8d7 │ │ │ │ ├── 7b │ │ │ │ │ └── 4384978d2493e851f9cca7858815fac9b10980 │ │ │ │ ├── 7f │ │ │ │ │ └── 76480d939dc401415927ea7ef25c676b8ddb8f │ │ │ │ ├── 9f │ │ │ │ │ └── d738e8f7967c078dceed8190330fc8648ee56a │ │ │ │ ├── a1 │ │ │ │ │ └── 7e31b5f9b445610fe3bd9a08f04eee314b5595 │ │ │ │ ├── a4 │ │ │ │ │ ├── 47ba2ca8fffd46dece72f7db6faf324afb8fcd │ │ │ │ │ └── a7dce85cf63874e984719f4fdd239f5145052f │ │ │ │ ├── a7 │ │ │ │ │ └── 1586c1dfe8a71c6cbf6c129f404c5642ff31bd │ │ │ │ ├── a8 │ │ │ │ │ └── 233120f6ad708f843d861ce2b7228ec4e3dec6 │ │ │ │ ├── ab │ │ │ │ │ └── 38987d12dc243c103a432608648c78fc6651a1 │ │ │ │ ├── b2 │ │ │ │ │ └── 5fa35b38051e4ae45d4222e795f9df2e43f1d1 │ │ │ │ ├── b3 │ │ │ │ │ └── e375c923d50c589b11b6da4a769bdd7f6502e3 │ │ │ │ ├── b5 │ │ │ │ │ └── 9b86c5f4874aea5255bf14d67a5ce13c80265f │ │ │ │ ├── b7 │ │ │ │ │ └── 58c5bc1c8117c2a4c545dae2903e36360501c5 │ │ │ │ ├── be │ │ │ │ │ └── 3563ae3f795b2b4353bcce3a527ad0a4f7f644 │ │ │ │ ├── c4 │ │ │ │ │ └── 7800c7266a2be04c571c04d5a6614691ea99bd │ │ │ │ ├── c7 │ │ │ │ │ └── 69ecde1af25ba729b92be431570f32418c3ccd │ │ │ │ ├── ce │ │ │ │ │ └── 40c7a2a2a2d35827ff4de3feb284894ff6e29f │ │ │ │ ├── d0 │ │ │ │ │ └── 0491fd7e5bb6fa28c517a0bb32b8b506539d4d │ │ │ │ ├── da │ │ │ │ │ └── 6413144c9053a78c3406f440cdc9fcb037fcf9 │ │ │ │ ├── db │ │ │ │ │ └── 9c482bd00c69d8a2d12242cee5f981ea040140 │ │ │ │ ├── e5 │ │ │ │ │ └── d221fc5da11a3169bf503d76497c81be3207b6 │ │ │ │ ├── e6 │ │ │ │ │ ├── 8bcc7b5d6370fac1ea9929f4b6982a4ebb99a2 │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ ├── e7 │ │ │ │ │ └── 039e6d0e7dd4d4c1e2e8e5aa5306b2776436ca │ │ │ │ ├── e8 │ │ │ │ │ └── 953ab38d30b11c45b5ac7229fcef0ab4d603c6 │ │ │ │ ├── ec │ │ │ │ │ └── 9e401198937e33a8617be9f235a449728d9f6d │ │ │ │ ├── f2 │ │ │ │ │ └── e41136eac73c39554dede1fd7e67b12502d577 │ │ │ │ ├── f6 │ │ │ │ │ └── 0079018b664e4e79329a7ef9559c8d9e0378d1 │ │ │ │ ├── f7 │ │ │ │ │ └── 05abffe7015f2beacf2abe7a36583ebee3487e │ │ │ │ ├── f8 │ │ │ │ │ └── d44d712e0680d942a4015058dd84e382879fe2 │ │ │ │ ├── fa │ │ │ │ │ └── 49b077972391ad58037050f2a75f74e3671e92 │ │ │ │ ├── fd │ │ │ │ │ └── 093bff70906175335656e6ce6ae05783708765 │ │ │ │ └── pack │ │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.idx │ │ │ │ │ ├── pack-a81e489679b7d3418f9ab594bda8ceb37dd4c695.pack │ │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx │ │ │ │ │ ├── pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack │ │ │ │ │ ├── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.idx │ │ │ │ │ └── pack-d85f5d483273108c9d8dd0e4728ccf0b2982423a.pack │ │ │ ├── packed-refs │ │ │ ├── refs │ │ │ │ ├── heads │ │ │ │ │ ├── diff-test-cases │ │ │ │ │ ├── i-do-numbers │ │ │ │ │ ├── logo │ │ │ │ │ ├── master │ │ │ │ │ ├── track-local │ │ │ │ │ └── treesame_as_32eab │ │ │ │ └── remotes │ │ │ │ │ └── origin │ │ │ │ │ └── HEAD │ │ │ └── worktrees │ │ │ │ ├── i-do-numbers │ │ │ │ ├── HEAD │ │ │ │ ├── ORIG_HEAD │ │ │ │ ├── commondir │ │ │ │ ├── gitdir │ │ │ │ ├── index │ │ │ │ └── logs │ │ │ │ │ └── HEAD │ │ │ │ └── logo │ │ │ │ ├── HEAD │ │ │ │ ├── ORIG_HEAD │ │ │ │ ├── commondir │ │ │ │ ├── gitdir │ │ │ │ ├── index │ │ │ │ ├── locked │ │ │ │ └── logs │ │ │ │ └── HEAD │ │ ├── modified_staged_file.txt │ │ ├── modified_unstaged_file.txt │ │ ├── new.txt │ │ ├── new_tracked_file.txt │ │ └── new_untracked_file.txt │ │ └── worktrees │ │ ├── i-do-numbers │ │ ├── dot_git │ │ ├── numbers.txt │ │ └── super-file.txt │ │ └── logo │ │ ├── 1 │ │ └── branch_file.txt │ │ ├── README │ │ ├── branch_file.txt │ │ ├── dot_git │ │ ├── new.txt │ │ └── square-logo.png ├── RevertFixture.cs ├── SetErrorFixture.cs ├── SignatureFixture.cs ├── StageFixture.cs ├── StashFixture.cs ├── StatusFixture.cs ├── SubmoduleFixture.cs ├── TagFixture.cs ├── TestHelpers │ ├── BaseFixture.cs │ ├── Constants.cs │ ├── DateTimeOffsetExtensions.cs │ ├── DirectoryHelper.cs │ ├── ExpectedFetchState.cs │ ├── FileExportFilter.cs │ ├── IPostTestDirectoryRemover.cs │ ├── OdbHelper.cs │ ├── ProcessHelper.cs │ ├── SelfCleaningDirectory.cs │ ├── SignatureExtensions.cs │ ├── SubstitutionCipherFilter.cs │ ├── TestRemoteInfo.cs │ └── TestRemoteRefs.cs ├── TreeDefinitionFixture.cs ├── TreeFixture.cs ├── UnstageFixture.cs ├── WorktreeFixture.cs ├── desktop │ ├── ShadowCopyFixture.cs │ └── SmartSubtransportFixture.cs └── xunit.runner.json ├── LibGit2Sharp.sln ├── LibGit2Sharp ├── AfterRebaseStepInfo.cs ├── AmbiguousSpecificationException.cs ├── ArchiverBase.cs ├── BareRepositoryException.cs ├── BeforeRebaseStepInfo.cs ├── BlameHunk.cs ├── BlameHunkCollection.cs ├── BlameOptions.cs ├── Blob.cs ├── Branch.cs ├── BranchCollection.cs ├── BranchTrackingDetails.cs ├── BranchUpdater.cs ├── BuiltInFeatures.cs ├── Certificate.cs ├── CertificateSsh.cs ├── CertificateX509.cs ├── ChangeKind.cs ├── CheckoutCallbacks.cs ├── CheckoutConflictException.cs ├── CheckoutFileConflictStrategy.cs ├── CheckoutModifiers.cs ├── CheckoutNotificationOptions.cs ├── CheckoutOptions.cs ├── CherryPickOptions.cs ├── CherryPickResult.cs ├── CloneOptions.cs ├── Commands │ ├── Checkout.cs │ ├── Fetch.cs │ ├── Pull.cs │ ├── Remove.cs │ └── Stage.cs ├── Commit.cs ├── CommitFilter.cs ├── CommitLog.cs ├── CommitOptions.cs ├── CommitRewriteInfo.cs ├── CommitSortStrategies.cs ├── CompareOptions.cs ├── Configuration.cs ├── ConfigurationEntry.cs ├── ConfigurationLevel.cs ├── Conflict.cs ├── ConflictCollection.cs ├── ContentChangeStats.cs ├── ContentChanges.cs ├── Core │ ├── ArrayMarshaler.cs │ ├── EncodingMarshaler.cs │ ├── Ensure.cs │ ├── EnumExtensions.cs │ ├── FetchPruneStrategy.cs │ ├── FileHistory.cs │ ├── FilePath.cs │ ├── FilePathExtensions.cs │ ├── FilePathMarshaler.cs │ ├── GitBlame.cs │ ├── GitBranchType.cs │ ├── GitBuf.cs │ ├── GitCertificate.cs │ ├── GitCertificateSsh.cs │ ├── GitCertificateSshType.cs │ ├── GitCertificateType.cs │ ├── GitCertificateX509.cs │ ├── GitCheckoutOpts.cs │ ├── GitCheckoutOptsWrapper.cs │ ├── GitCherryPickOptions.cs │ ├── GitCloneOptions.cs │ ├── GitConfigEntry.cs │ ├── GitCredential.cs │ ├── GitCredentialType.cs │ ├── GitCredentialUserpass.cs │ ├── GitDescribeFormatOptions.cs │ ├── GitDiff.cs │ ├── GitDirection.cs │ ├── GitError.cs │ ├── GitErrorCategory.cs │ ├── GitErrorCode.cs │ ├── GitFetchOptions.cs │ ├── GitFetchOptionsWrapper.cs │ ├── GitFilter.cs │ ├── GitIndexEntry.cs │ ├── GitIndexNameEntry.cs │ ├── GitIndexReucEntry.cs │ ├── GitIndexTime.cs │ ├── GitMergeOpts.cs │ ├── GitObjectLazyGroup.cs │ ├── GitObjectType.cs │ ├── GitOdbBackend.cs │ ├── GitOdbBackendStream.cs │ ├── GitOid.cs │ ├── GitProxyOptions.cs │ ├── GitProxyOptionsWrapper.cs │ ├── GitPushOptions.cs │ ├── GitPushOptionsWrapper.cs │ ├── GitPushUpdate.cs │ ├── GitRebaseOperation.cs │ ├── GitRebaseOptions.cs │ ├── GitReferenceType.cs │ ├── GitRemoteCallbacks.cs │ ├── GitRemoteHead.cs │ ├── GitRepositoryInitOptions.cs │ ├── GitRevertOpts.cs │ ├── GitSignature.cs │ ├── GitSmartSubtransport.cs │ ├── GitSmartSubtransportRegistration.cs │ ├── GitSmartSubtransportStream.cs │ ├── GitStashApplyOpts.cs │ ├── GitStatusEntry.cs │ ├── GitStatusOptions.cs │ ├── GitStrArray.cs │ ├── GitStrArrayManaged.cs │ ├── GitStrArrayNative.cs │ ├── GitSubmoduleIgnore.cs │ ├── GitSubmoduleOptions.cs │ ├── GitTime.cs │ ├── GitTransferProgress.cs │ ├── GitWorktree.cs │ ├── GitWriteStream.cs │ ├── Handles │ │ ├── DisposableExtensions.cs │ │ ├── Libgit2Object.cs │ │ ├── Objects.cs │ │ └── Objects.tt │ ├── HistoryRewriter.cs │ ├── ILazy.cs │ ├── LambdaEqualityHelper.cs │ ├── LazyGroup.cs │ ├── LookUpOptions.cs │ ├── NativeMethods.cs │ ├── ObjectSafeWrapper.cs │ ├── Opaques.cs │ ├── PackbuilderCallbacks.cs │ ├── PathCase.cs │ ├── Platform.cs │ ├── Proxy.cs │ ├── PushTransferProgressCallbacks.cs │ ├── RawContentStream.cs │ ├── RepositoryOpenFlags.cs │ ├── StringExtensions.cs │ ├── SubmoduleLazyGroup.cs │ ├── TarWriter.cs │ ├── Utf8Marshaler.cs │ └── WriteStream.cs ├── Credentials.cs ├── CurrentOperation.cs ├── DefaultCredentials.cs ├── DescribeOptions.cs ├── DescribeStrategy.cs ├── DetachedHead.cs ├── Diff.cs ├── DiffAlgorithm.cs ├── DiffModifiers.cs ├── DiffTargets.cs ├── DirectReference.cs ├── EmptyCommitException.cs ├── EntryExistsException.cs ├── ExplicitPathsOptions.cs ├── FetchHead.cs ├── FetchOptions.cs ├── FetchOptionsBase.cs ├── FileStatus.cs ├── Filter.cs ├── FilterAttributeEntry.cs ├── FilterMode.cs ├── FilterRegistration.cs ├── FilterSource.cs ├── FilteringOptions.cs ├── GitLink.cs ├── GitObject.cs ├── GitObjectMetadata.cs ├── GlobalSettings.cs ├── Handlers.cs ├── HistoryDivergence.cs ├── IBelongToARepository.cs ├── ICommitLog.cs ├── IDiffResult.cs ├── IQueryableCommitLog.cs ├── IRepository.cs ├── Identity.cs ├── Ignore.cs ├── Index.cs ├── IndexEntry.cs ├── IndexNameEntry.cs ├── IndexNameEntryCollection.cs ├── IndexReucEntry.cs ├── IndexReucEntryCollection.cs ├── InvalidSpecificationException.cs ├── LibGit2Sharp.csproj ├── LibGit2SharpException.cs ├── Line.cs ├── LockedFileException.cs ├── Log.cs ├── LogConfiguration.cs ├── LogEntry.cs ├── LogLevel.cs ├── MatchedPathsAggregator.cs ├── MergeAndCheckoutOptionsBase.cs ├── MergeFetchHeadNotFoundException.cs ├── MergeHead.cs ├── MergeOptions.cs ├── MergeOptionsBase.cs ├── MergeResult.cs ├── MergeTreeOptions.cs ├── MergeTreeResult.cs ├── Mode.cs ├── NameConflictException.cs ├── NativeException.cs ├── Network.cs ├── NonFastForwardException.cs ├── NotFoundException.cs ├── Note.cs ├── NoteCollection.cs ├── ObjectDatabase.cs ├── ObjectId.cs ├── ObjectType.cs ├── OdbBackend.cs ├── OdbBackendStream.cs ├── PackBuilder.cs ├── Patch.cs ├── PatchEntryChanges.cs ├── PatchStats.cs ├── PeelException.cs ├── ProxyOptions.cs ├── ProxyType.cs ├── PullOptions.cs ├── PushOptions.cs ├── PushResult.cs ├── PushStatusError.cs ├── PushUpdate.cs ├── Rebase.cs ├── RebaseOperationImpl.cs ├── RebaseOptions.cs ├── RebaseResult.cs ├── RebaseStepInfo.cs ├── RecurseSubmodulesException.cs ├── RefSpec.cs ├── RefSpecCollection.cs ├── RefSpecDirection.cs ├── Reference.cs ├── ReferenceCollection.cs ├── ReferenceExtensions.cs ├── ReferenceWrapper.cs ├── ReflogCollection.cs ├── ReflogEntry.cs ├── Remote.cs ├── RemoteCallbacks.cs ├── RemoteCollection.cs ├── RemoteCompletionType.cs ├── RemoteRedirectMode.cs ├── RemoteUpdater.cs ├── RemoveFromIndexException.cs ├── RenameDetails.cs ├── Repository.cs ├── RepositoryExtensions.cs ├── RepositoryInformation.cs ├── RepositoryNotFoundException.cs ├── RepositoryOperationContext.cs ├── RepositoryOptions.cs ├── RepositoryStatus.cs ├── ResetMode.cs ├── RevertOptions.cs ├── RevertResult.cs ├── RewriteHistoryOptions.cs ├── SecureUsernamePasswordCredentials.cs ├── Signature.cs ├── SignatureInfo.cs ├── SimilarityOptions.cs ├── SmartSubtransport.cs ├── SmartSubtransportRegistration.cs ├── SmartSubtransportRegistrationData.cs ├── SmartSubtransportStream.cs ├── StageLevel.cs ├── StageOptions.cs ├── Stash.cs ├── StashApplyOptions.cs ├── StashApplyProgress.cs ├── StashApplyStatus.cs ├── StashCollection.cs ├── StashModifiers.cs ├── StatusEntry.cs ├── StatusOptions.cs ├── Submodule.cs ├── SubmoduleCollection.cs ├── SubmoduleExtensions.cs ├── SubmoduleIgnore.cs ├── SubmoduleRecurse.cs ├── SubmoduleStatus.cs ├── SubmoduleUpdate.cs ├── SubmoduleUpdateOptions.cs ├── SupportedCredentialTypes.cs ├── SymbolicReference.cs ├── Tag.cs ├── TagAnnotation.cs ├── TagCollection.cs ├── TagFetchMode.cs ├── TarArchiver.cs ├── TransferProgress.cs ├── TransientIndex.cs ├── Tree.cs ├── TreeChanges.cs ├── TreeDefinition.cs ├── TreeEntry.cs ├── TreeEntryChanges.cs ├── TreeEntryDefinition.cs ├── TreeEntryTargetType.cs ├── UnbornBranchException.cs ├── UnmatchedPathException.cs ├── UnmergedIndexEntriesException.cs ├── UserCanceledException.cs ├── UsernamePasswordCredentials.cs ├── Version.cs ├── VoidReference.cs ├── Worktree.cs ├── WorktreeCollection.cs └── WorktreeLock.cs ├── NativeLibraryLoadTestApp ├── TestApp.cs ├── x64 │ └── NativeLibraryLoadTestApp.x64.csproj └── x86 │ └── NativeLibraryLoadTestApp.x86.csproj ├── README.md ├── Targets ├── CodeGenerator.targets └── GenerateNativeDllName.targets ├── TrimmingTestApp ├── Program.cs └── TrimmingTestApp.csproj ├── acknowledgments.md ├── libgit2sharp.snk ├── nuget.config └── square-logo.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ArchiveFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ArchiveFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ArchiveTarFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ArchiveTarFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/AttributesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/AttributesFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/BlameFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/BlameFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/BlobFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/BlobFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/BranchFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/BranchFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CheckoutFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CheckoutFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CherryPickFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CherryPickFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CleanFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CleanFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CloneFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CloneFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CommitAncestorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CommitAncestorFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CommitFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CommitFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ConfigurationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ConfigurationFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ConflictFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ConflictFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/CurrentOperationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/CurrentOperationFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/DescribeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/DescribeFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/DiffBlobToBlobFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/DiffBlobToBlobFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/DiffTreeToTargetFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/DiffTreeToTargetFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/DiffWorkdirToIndexFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/DiffWorkdirToIndexFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/EqualityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/EqualityFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/FetchFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/FetchFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/FileHistoryFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/FileHistoryFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/FilterBranchFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/FilterBranchFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/FilterFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/FilterFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/FilterSubstitutionCipherFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/FilterSubstitutionCipherFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/GlobalSettingsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/GlobalSettingsFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/IgnoreFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/IgnoreFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/IndexFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/IndexFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/LogFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/LogFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/MergeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/MergeFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/MetaFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/MetaFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/MockingFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/MockingFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/NetworkFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/NetworkFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/NoteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/NoteFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ObjectDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ObjectDatabaseFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ObjectIdFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ObjectIdFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/OdbBackendFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/OdbBackendFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/PackBuilderFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/PackBuilderFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/PatchEntryChangesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/PatchEntryChangesFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/PatchStatsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/PatchStatsFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/PushFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/PushFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RebaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RebaseFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RefSpecFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RefSpecFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ReferenceFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ReferenceFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ReflogFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ReflogFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RemoteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RemoteFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RemoveFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RemoveFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RepositoryFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RepositoryFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RepositoryOptionsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RepositoryOptionsFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ResetHeadFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ResetHeadFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/ResetIndexFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/ResetIndexFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/.gitattributes -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/.gitignore -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | Initial commit 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 872129051d644790636b416d1ef1ec830c5f6b90 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/hello.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/assume_unchanged_wd/world.txt: -------------------------------------------------------------------------------- 1 | World 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-0-3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-0-3.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-0-4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-0-4.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-1-1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-1-1.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-1-2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-1-2.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-2-4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-2-4.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-2-5.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-2-5.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-3-2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-3-2.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-3-3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-3-3.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-4-0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-4-0.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-4-1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/full-4-1.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-0-3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-0-3.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-0-4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-0-4.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-1-1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-1-1.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-1-2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-1-2.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-2-4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-2-4.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-2-5.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-2-5.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-3-2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-3-2.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-3-3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-3-3.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-4-0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-4-0.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-4-1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected/f8d44d7...7252fe2/numbers.txt-4-1.diff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected_archives/commit_with_directory.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected_archives/commit_with_directory.tar -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/expected_archives/tree_with_directory.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/expected_archives/tree_with_directory.tar -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/a.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/b.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/info/refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/info/refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-f9b2f231d5e59d4a265578d02283f848a5dc4694.pack 2 | 3 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/refs/heads/conflicts_spaces: -------------------------------------------------------------------------------- 1 | 79853dbb13f5e83a1e9e69bf747c5a667c21d420 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/refs/heads/conflicts_tabs: -------------------------------------------------------------------------------- 1 | e55b31220c73a5535ba58709791880f3035849d4 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/merge_testrepo_wd/dot_git/refs/heads/normal_merge2: -------------------------------------------------------------------------------- 1 | 625186280ed2a6ec9b65d250ed90cf2e4acef957 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/ancestor-and-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/ancestor-and-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/ancestor-and-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/ancestor-and-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/conflicts-one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/conflicts-one.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/conflicts-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/conflicts-two.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/COMMIT_EDITMSG -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/MERGE_HEAD: -------------------------------------------------------------------------------- 1 | 8eefb6f8061e4d10a7a59aac8771dc17958d93eb 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/MERGE_MODE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/MERGE_MSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/MERGE_MSG -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | 9b2f98b1c086d3929eac387d39fae94425e0115f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/refs/heads/branch: -------------------------------------------------------------------------------- 1 | 8eefb6f8061e4d10a7a59aac8771dc17958d93eb 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 9b2f98b1c086d3929eac387d39fae94425e0115f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/one.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/ours-and-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/ours-and-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/ours-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/ours-only.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/theirs-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/theirs-only.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergedrepo_wd/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergedrepo_wd/two.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/0a-no-change.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/0a-no-change.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/0b-duplicated-in-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/0b-duplicated-in-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/0b-rewritten-in-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/0b-rewritten-in-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/0c-duplicated-in-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/0c-duplicated-in-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/0c-rewritten-in-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/0c-rewritten-in-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/1a-newname-in-ours-edited-in-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/1a-newname-in-ours-edited-in-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/1a-newname-in-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/1a-newname-in-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/1b-newname-in-theirs-edited-in-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/1b-newname-in-theirs-edited-in-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/1b-newname-in-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/1b-newname-in-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/2-newname-in-both.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/2-newname-in-both.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/3a-newname-in-ours-deleted-in-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/3a-newname-in-ours-deleted-in-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/3b-newname-in-theirs-deleted-in-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/3b-newname-in-theirs-deleted-in-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/4a-newname-in-ours-added-in-theirs.txt~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/4a-newname-in-ours-added-in-theirs.txt~HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/4b-newname-in-theirs-added-in-ours.txt~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/4b-newname-in-theirs-added-in-ours.txt~HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/5a-newname-in-ours-added-in-theirs.txt~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/5a-newname-in-ours-added-in-theirs.txt~HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/5b-newname-in-theirs-added-in-ours.txt~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/5b-newname-in-theirs-added-in-ours.txt~HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/6-both-renamed-1-to-2-ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/6-both-renamed-1-to-2-ours.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/6-both-renamed-1-to-2-theirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/6-both-renamed-1-to-2-theirs.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/7-both-renamed.txt~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/7-both-renamed.txt~HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/7-both-renamed.txt~rename_conflict_theirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/7-both-renamed.txt~rename_conflict_theirs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | rename conflict theirs 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/rename_conflict_ours 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/MERGE_HEAD: -------------------------------------------------------------------------------- 1 | a802e06f1782a9645b9851bc7202cee74a8a4972 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/MERGE_MODE: -------------------------------------------------------------------------------- 1 | no-ff -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/MERGE_MSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/MERGE_MSG -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/ORIG_HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/ORIG_HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | ae39c77c70cb6bad18bb471912460c4e1ba0f586 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/refs/heads/master: -------------------------------------------------------------------------------- 1 | 297aa6cd028b3336c7802c7a6f49143da4e1602d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/modules/submodule/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904: -------------------------------------------------------------------------------- 1 | x+)JMU0` 2 | , -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/branch: -------------------------------------------------------------------------------- 1 | 7cb63eed597130ba4abb87b3e544b85021905520 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/df_ancestor: -------------------------------------------------------------------------------- 1 | 2da538570bc1e5b2c3e855bf702f35248ad0735f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/df_side1: -------------------------------------------------------------------------------- 1 | a7dbfcbfc1a60709cb80b5ca24539008456531d0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/df_side2: -------------------------------------------------------------------------------- 1 | fc90237dc4891fa6c69827fc465632225e391618 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/ff_branch: -------------------------------------------------------------------------------- 1 | fd89f8cffb663ac89095a0f9764902e93ceaca6a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | bd593285fc7fe4ca18ccdbabf027f5d689101452 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo1: -------------------------------------------------------------------------------- 1 | 16f825815cfd20a07a75c71554e82d8eede0b061 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo2: -------------------------------------------------------------------------------- 1 | 158dc7bedb202f5b26502bf3574faa7f4238d56c 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo3 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo4: -------------------------------------------------------------------------------- 1 | 54269b3f6ec3d7d4ede24dd350dd5d605495c3ae 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo5: -------------------------------------------------------------------------------- 1 | e4f618a2c3ed0669308735727df5ebf2447f022f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/octo6: -------------------------------------------------------------------------------- 1 | b6f610aef53bd343e6c96227de874c66f00ee8e8 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/previous: -------------------------------------------------------------------------------- 1 | c607fc30883e335def28cd686b51f6cfa02b06ec 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/rename_conflict_ancestor: -------------------------------------------------------------------------------- 1 | 2392a2dacc9efb562b8635d6579fb458751c7c5b 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/rename_conflict_ours: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/rename_conflict_ours -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/rename_conflict_theirs: -------------------------------------------------------------------------------- 1 | a802e06f1782a9645b9851bc7202cee74a8a4972 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/renames1: -------------------------------------------------------------------------------- 1 | 412b32fb66137366147f1801ecc962452757d48a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/renames2: -------------------------------------------------------------------------------- 1 | ab40af3cb8a3ed2e2843e96d9aa7871336b94573 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/submodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/submodules -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/submodules-branch: -------------------------------------------------------------------------------- 1 | 811c70fcb6d5bbd022d04cc31836d30b436f9551 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/submodules-branch2: -------------------------------------------------------------------------------- 1 | 7c04ca611203ed320c5f495b9813054dd23be3be 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-10: -------------------------------------------------------------------------------- 1 | 0ec5f433959cd46177f745903353efb5be08d151 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-10-branch: -------------------------------------------------------------------------------- 1 | 11f4f3c08b737f5fd896cbefa1425ee63b21b2fa 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-11: -------------------------------------------------------------------------------- 1 | 3168dca1a561889b045a6441909f4c56145e666d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-11-branch: -------------------------------------------------------------------------------- 1 | 6718a45909532d1fcf5600d0877f7fe7e78f0b86 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-13: -------------------------------------------------------------------------------- 1 | a3fabece9eb8748da810e1e08266fef9b7136ad4 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-13-branch: -------------------------------------------------------------------------------- 1 | 05f3c1a2a56ca95c3d2ef28dc9ddf32b5cd6c91c 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-14: -------------------------------------------------------------------------------- 1 | 7e2d058d5fedf8329db44db4fac610d6b1a89159 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-14-branch: -------------------------------------------------------------------------------- 1 | 8187117062b750eed4f93fd7e899f17b52ce554d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-2alt: -------------------------------------------------------------------------------- 1 | 566ab53c220a2eafc1212af1a024513230280ab9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-2alt-branch: -------------------------------------------------------------------------------- 1 | c9174cef549ec94ecbc43ef03cdc775b4950becb 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-3alt: -------------------------------------------------------------------------------- 1 | 4c9fac0707f8d4195037ae5a681aa48626491541 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-3alt-branch: -------------------------------------------------------------------------------- 1 | c607fc30883e335def28cd686b51f6cfa02b06ec 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-4: -------------------------------------------------------------------------------- 1 | cc3e3009134cb88014129fc8858d1101359e5e2f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-4-branch: -------------------------------------------------------------------------------- 1 | 183310e30fb1499af8c619108ffea4d300b5e778 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-5alt-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-5alt-1 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-5alt-1-branch: -------------------------------------------------------------------------------- 1 | 478172cb2f5ff9b514bc9d04d3bd5ef5840cb3b2 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-5alt-2: -------------------------------------------------------------------------------- 1 | 3b47b031b3e55ae11e14a05260b1c3ffd6838d55 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-5alt-2-branch: -------------------------------------------------------------------------------- 1 | f48097eb340dc5a7cae55aabcf1faf4548aa821f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-6: -------------------------------------------------------------------------------- 1 | 99b4f7e4f24470fa06b980bc21f1095c2a9425c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-6-branch: -------------------------------------------------------------------------------- 1 | a43150a738849c59376cf30bb2a68348a83c8f48 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-7 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-7-branch: -------------------------------------------------------------------------------- 1 | 5195a1b480f66691b667f10a9e41e70115a78351 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-8: -------------------------------------------------------------------------------- 1 | 3575826c96a975031d2c14368529cc5c4353a8fd 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-8-branch: -------------------------------------------------------------------------------- 1 | 52d8bc572af2b6d4ee0d5e62ed5d1fbad92210a9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-9: -------------------------------------------------------------------------------- 1 | c35dee9bcc0e989f3b0c40f68372a9a51b6c4e6a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/trivial-9-branch: -------------------------------------------------------------------------------- 1 | 13d1be4ea52a6ced1d7a1d832f0ee3c399348e5e 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/mergerenames_wd/dot_git/refs/heads/unrelated: -------------------------------------------------------------------------------- 1 | 55b4e4687e7a0d9ca367016ed930f385d4022e6f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 872129051d644790636b416d1ef1ec830c5f6b90 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/hello.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/packbuilder_testrepo_wd/world.txt: -------------------------------------------------------------------------------- 1 | World 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/revert_testrepo_wd/a.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/revert_testrepo_wd/b.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/revert_testrepo_wd/c.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/objects/info/packs: -------------------------------------------------------------------------------- 1 | P pack-29d1a036908407037b737d1cb436707551c3cedf.pack 2 | 3 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | cb4f7f0eca7a0114cdafd8537332aa17de36a4e9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/refs/heads/revert: -------------------------------------------------------------------------------- 1 | b6fbb29b625aabe0fb5736da6fd61d4147e4405e 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/refs/heads/revert_merge: -------------------------------------------------------------------------------- 1 | 2747045c29b5b9c5624225ce600f3117fdcf0b87 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/revert_testrepo_wd/dot_git/refs/heads/revert_rename: -------------------------------------------------------------------------------- 1 | c4b5cea70e4cd5b633ed0f10ae0ed5384e8190d8 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/shallow.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/shallow.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/shallow.git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/shallow.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/shallow.git/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/shallow.git/refs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/shallow.git/shallow: -------------------------------------------------------------------------------- 1 | be3563ae3f795b2b4353bcce3a527ad0a4f7f644 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_small_wd/.gitmodules -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/refs/heads/alternate: -------------------------------------------------------------------------------- 1 | 31be1072bafa80f8b4386eb35b90e284d9ee672d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_small_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 7d3aeaa887efe60fb664ba92a203a4fb50249f5b 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_target_wd/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_target_wd/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_target_wd/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_added_and_uncommited/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_branch_only/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_file/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/refs/heads/master: -------------------------------------------------------------------------------- 1 | 3d9386c507f6b093471a3e324085657a3c2b4247 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_head/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_index/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_changed_untracked_file/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/refs/heads/master: -------------------------------------------------------------------------------- 1 | 5e4963595a9774b90524d35a807169049de8ccad 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_missing_commits/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/refs/heads/master: -------------------------------------------------------------------------------- 1 | 480095882d281ed676fe5b863569520e54a7d5c0 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/modules/sm_unchanged/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/refs/heads/dev: -------------------------------------------------------------------------------- 1 | 6b94d06e586d4ed904d8c00a9de7d0afe0fc9c3c 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 7484482eb8db738cafa696993664607500a3f2b9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/gitmodules -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/just_a_dir/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/just_a_dir/contents -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/just_a_file: -------------------------------------------------------------------------------- 1 | This is just a plain file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | Initial commit 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/not_submodule/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 68e92c611b80ee1ed8f38314ff9577f0d15b2444 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_added_and_uncommited/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_added_and_uncommited/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_added_and_uncommited/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_added_and_uncommited 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_added_and_uncommited/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_added_and_uncommited/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_file/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_file/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_file/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_changed_file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_file/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_file/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_head/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_head/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_head/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_changed_head 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_head/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_head/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_index/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_index/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_index/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_changed_index 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_index/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_index/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_changed_untracked_file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_changed_untracked_file/i_am_untracked: -------------------------------------------------------------------------------- 1 | This file is untracked, but in a submodule 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_missing_commits/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_missing_commits/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_missing_commits/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_missing_commits 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_missing_commits/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_missing_commits/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_unchanged/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_unchanged/README.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_unchanged/dot_git: -------------------------------------------------------------------------------- 1 | gitdir: ../.git/modules/sm_unchanged 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/submodule_wd/sm_unchanged/file_to_modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/submodule_wd/sm_unchanged/file_to_modify -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/head-tracker: -------------------------------------------------------------------------------- 1 | ref: HEAD 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/18/1037049a54a1eb5fab404658a3a250b44335d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/18/1037049a54a1eb5fab404658a3a250b44335d7 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/18/10dff58d8a660512d4832e740f692884338ccd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/18/10dff58d8a660512d4832e740f692884338ccd -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/1a/550e416326cdb4a8e127a04dd69d7a01b11cf4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/1a/550e416326cdb4a8e127a04dd69d7a01b11cf4 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/25/2846a95d7b031136d19f5a8a85ebed204cdbef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/25/2846a95d7b031136d19f5a8a85ebed204cdbef -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/27/2a41cf2b22e57f2bc5bf6ef37b63568cd837e4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/27/2a41cf2b22e57f2bc5bf6ef37b63568cd837e4 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/30/415905d74c9ae026fda6b5f51e9ed64dd0e1a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/30/415905d74c9ae026fda6b5f51e9ed64dd0e1a4 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/3d/fd6fd25c22ef62c1657a305f05fdcdc74d5987: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/3d/fd6fd25c22ef62c1657a305f05fdcdc74d5987 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/09de11e16118bc4ed32bd18e2991a77f94bf62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/09de11e16118bc4ed32bd18e2991a77f94bf62 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/240004a63a598f5d2d876c78d7eb53756610f8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/240004a63a598f5d2d876c78d7eb53756610f8 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/d5d1881ebcb31173b1f89ef7c2ea955c3b1a3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/44/d5d1881ebcb31173b1f89ef7c2ea955c3b1a3b -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/4c/062a6361ae6959e06292c1fa5e2822d9c96345: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/4c/062a6361ae6959e06292c1fa5e2822d9c96345 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/50/3a16fd8476ab19a6caa2059190b276d9a2c37f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/50/3a16fd8476ab19a6caa2059190b276d9a2c37f -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/53/2740a931e8f9140b26b93cb0a2d81f6943741a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/53/2740a931e8f9140b26b93cb0a2d81f6943741a -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/58/1f9824ecaf824221bd36edf5430f2739a7c4f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/58/1f9824ecaf824221bd36edf5430f2739a7c4f5 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/59/cf25c488378bfc297518e2ba9786973ef15c38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/59/cf25c488378bfc297518e2ba9786973ef15c38 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/71/89b38caf261863c4440e15e6e71057535b6375: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/71/89b38caf261863c4440e15e6e71057535b6375 -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/heads/br2: -------------------------------------------------------------------------------- 1 | a4a7dce85cf63874e984719f4fdd239f5145052f 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 4c062a6361ae6959e06292c1fa5e2822d9c96345 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/heads/packed-test: -------------------------------------------------------------------------------- 1 | 4a202b346bb0fb0db7eff3cffeb3c70babbd2045 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/heads/test: -------------------------------------------------------------------------------- 1 | e90810b8df3e80c413d903f631643c716887138d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/notes/answer: -------------------------------------------------------------------------------- 1 | 532740a931e8f9140b26b93cb0a2d81f6943741a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/notes/answer2: -------------------------------------------------------------------------------- 1 | 44d5d1881ebcb31173b1f89ef7c2ea955c3b1a3b 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/notes/commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo.git/refs/notes/commits -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/tags/e90810b: -------------------------------------------------------------------------------- 1 | 7b4384978d2493e851f9cca7858815fac9b10980 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/tags/lw: -------------------------------------------------------------------------------- 1 | e90810b8df3e80c413d903f631643c716887138d 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/tags/point_to_blob: -------------------------------------------------------------------------------- 1 | 1385f264afb75a56a5bec74243be9b367ba4ca08 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/tags/tag_without_tagger: -------------------------------------------------------------------------------- 1 | 252846a95d7b031136d19f5a8a85ebed204cdbef 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo.git/refs/tags/test: -------------------------------------------------------------------------------- 1 | b25fa35b38051e4ae45d4222e795f9df2e43f1d1 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/1.txt: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/1/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/README: -------------------------------------------------------------------------------- 1 | hey there 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/COMMIT_EDITMSG -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/refs/heads/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/refs/heads/logo -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/logs/refs/heads/master -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/diff-test-cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/diff-test-cases -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/i-do-numbers: -------------------------------------------------------------------------------- 1 | 7252fe2da2c4dd6d85231a150d0485ec46abaa7a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/logo -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 32eab9cb1f450b5fe7ab663462b77d7f4b703344 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/track-local: -------------------------------------------------------------------------------- 1 | 580c2111be43802dab11328176d94c391f1deae9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/heads/treesame_as_32eab: -------------------------------------------------------------------------------- 1 | f705abffe7015f2beacf2abe7a36583ebee3487e 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/dot_git/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/modified_staged_file.txt: -------------------------------------------------------------------------------- 1 | a change 2 | more files! 3 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/modified_unstaged_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/testrepo_wd/modified_unstaged_file.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/new.txt: -------------------------------------------------------------------------------- 1 | my new file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/new_tracked_file.txt: -------------------------------------------------------------------------------- 1 | a new file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/testrepo_wd/new_untracked_file.txt: -------------------------------------------------------------------------------- 1 | content 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/1.txt: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/1/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/README: -------------------------------------------------------------------------------- 1 | hey there 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/COMMIT_EDITMSG -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/config -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/info/exclude -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/refs/heads/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/refs/heads/logo -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/logs/refs/heads/master -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/packed-refs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/diff-test-cases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/diff-test-cases -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/i-do-numbers: -------------------------------------------------------------------------------- 1 | 7252fe2da2c4dd6d85231a150d0485ec46abaa7a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/logo -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 32eab9cb1f450b5fe7ab663462b77d7f4b703344 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/track-local: -------------------------------------------------------------------------------- 1 | 580c2111be43802dab11328176d94c391f1deae9 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/heads/treesame_as_32eab: -------------------------------------------------------------------------------- 1 | f705abffe7015f2beacf2abe7a36583ebee3487e 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/i-do-numbers 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/ORIG_HEAD: -------------------------------------------------------------------------------- 1 | 7252fe2da2c4dd6d85231a150d0485ec46abaa7a 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/commondir: -------------------------------------------------------------------------------- 1 | ../.. 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/gitdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/gitdir -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/i-do-numbers/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/logo 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/ORIG_HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/ORIG_HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/commondir: -------------------------------------------------------------------------------- 1 | ../.. 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/gitdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/gitdir -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/index -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/locked: -------------------------------------------------------------------------------- 1 | Test lock reason 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/dot_git/worktrees/logo/logs/HEAD -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/modified_staged_file.txt: -------------------------------------------------------------------------------- 1 | a change 2 | more files! 3 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/modified_unstaged_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/modified_unstaged_file.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/new.txt: -------------------------------------------------------------------------------- 1 | my new file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/new_tracked_file.txt: -------------------------------------------------------------------------------- 1 | a new file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/testrepo_wd/new_untracked_file.txt: -------------------------------------------------------------------------------- 1 | content 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/dot_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/dot_git -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/numbers.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/super-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/worktrees/i-do-numbers/super-file.txt -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/1/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/README: -------------------------------------------------------------------------------- 1 | hey there 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/branch_file.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/dot_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/dot_git -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/new.txt: -------------------------------------------------------------------------------- 1 | my new file 2 | -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/square-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/Resources/worktree/worktrees/logo/square-logo.png -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/RevertFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/RevertFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/SetErrorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/SetErrorFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/SignatureFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/SignatureFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/StageFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/StageFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/StashFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/StashFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/StatusFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/StatusFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/SubmoduleFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/SubmoduleFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TagFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TagFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/Constants.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/DateTimeOffsetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/DateTimeOffsetExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/DirectoryHelper.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/ExpectedFetchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/ExpectedFetchState.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/FileExportFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/FileExportFilter.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/IPostTestDirectoryRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/IPostTestDirectoryRemover.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/OdbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/OdbHelper.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/ProcessHelper.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/SelfCleaningDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/SelfCleaningDirectory.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/SignatureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/SignatureExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/SubstitutionCipherFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/SubstitutionCipherFilter.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/TestRemoteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/TestRemoteInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TestHelpers/TestRemoteRefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TestHelpers/TestRemoteRefs.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TreeDefinitionFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TreeDefinitionFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/TreeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/TreeFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/UnstageFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/UnstageFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/WorktreeFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/WorktreeFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/desktop/ShadowCopyFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/desktop/ShadowCopyFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/desktop/SmartSubtransportFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/desktop/SmartSubtransportFixture.cs -------------------------------------------------------------------------------- /LibGit2Sharp.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.Tests/xunit.runner.json -------------------------------------------------------------------------------- /LibGit2Sharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp.sln -------------------------------------------------------------------------------- /LibGit2Sharp/AfterRebaseStepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/AfterRebaseStepInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp/AmbiguousSpecificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/AmbiguousSpecificationException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ArchiverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ArchiverBase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BareRepositoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BareRepositoryException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BeforeRebaseStepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BeforeRebaseStepInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BlameHunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BlameHunk.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BlameHunkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BlameHunkCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BlameOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BlameOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Blob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Blob.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Branch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Branch.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BranchCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BranchCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BranchTrackingDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BranchTrackingDetails.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BranchUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BranchUpdater.cs -------------------------------------------------------------------------------- /LibGit2Sharp/BuiltInFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/BuiltInFeatures.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Certificate.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CertificateSsh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CertificateSsh.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CertificateX509.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CertificateX509.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ChangeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ChangeKind.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutCallbacks.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutConflictException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutFileConflictStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutFileConflictStrategy.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutModifiers.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutNotificationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutNotificationOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CheckoutOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CheckoutOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CherryPickOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CherryPickOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CherryPickResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CherryPickResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CloneOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CloneOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commands/Checkout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commands/Checkout.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commands/Fetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commands/Fetch.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commands/Pull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commands/Pull.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commands/Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commands/Remove.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commands/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commands/Stage.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Commit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Commit.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CommitFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CommitFilter.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CommitLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CommitLog.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CommitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CommitOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CommitRewriteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CommitRewriteInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CommitSortStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CommitSortStrategies.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CompareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CompareOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Configuration.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ConfigurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ConfigurationEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ConfigurationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ConfigurationLevel.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Conflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Conflict.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ConflictCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ConflictCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ContentChangeStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ContentChangeStats.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ContentChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ContentChanges.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/ArrayMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/ArrayMarshaler.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/EncodingMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/EncodingMarshaler.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Ensure.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/EnumExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/FetchPruneStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/FetchPruneStrategy.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/FileHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/FileHistory.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/FilePath.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/FilePathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/FilePathExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/FilePathMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/FilePathMarshaler.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitBlame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitBlame.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitBranchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitBranchType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitBuf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitBuf.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCertificate.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCertificateSsh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCertificateSsh.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCertificateSshType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCertificateSshType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCertificateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCertificateType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCertificateX509.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCertificateX509.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCheckoutOpts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCheckoutOpts.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCherryPickOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCherryPickOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCloneOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCloneOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitConfigEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitConfigEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCredential.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCredentialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCredentialType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitCredentialUserpass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitCredentialUserpass.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitDescribeFormatOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitDescribeFormatOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitDiff.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitDirection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitError.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitErrorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitErrorCategory.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitErrorCode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitFetchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitFetchOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitFetchOptionsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitFetchOptionsWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitFilter.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitIndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitIndexEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitIndexNameEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitIndexNameEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitIndexReucEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitIndexReucEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitIndexTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitIndexTime.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitMergeOpts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitMergeOpts.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitObjectLazyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitObjectLazyGroup.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitObjectType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitOdbBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitOdbBackend.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitOdbBackendStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitOdbBackendStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitOid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitOid.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitProxyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitProxyOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitProxyOptionsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitProxyOptionsWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitPushOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitPushOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitPushOptionsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitPushOptionsWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitPushUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitPushUpdate.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRebaseOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRebaseOperation.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRebaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRebaseOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitReferenceType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRemoteCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRemoteCallbacks.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRemoteHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRemoteHead.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRepositoryInitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRepositoryInitOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitRevertOpts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitRevertOpts.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSignature.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSmartSubtransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSmartSubtransport.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSmartSubtransportRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSmartSubtransportRegistration.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSmartSubtransportStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSmartSubtransportStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStashApplyOpts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStashApplyOpts.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStatusEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStatusEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStatusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStatusOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStrArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStrArray.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStrArrayManaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStrArrayManaged.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitStrArrayNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitStrArrayNative.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSubmoduleIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSubmoduleIgnore.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitSubmoduleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitSubmoduleOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitTime.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitTransferProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitTransferProgress.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitWorktree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitWorktree.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/GitWriteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/GitWriteStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Handles/DisposableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Handles/DisposableExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Handles/Libgit2Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Handles/Libgit2Object.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Handles/Objects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Handles/Objects.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Handles/Objects.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Handles/Objects.tt -------------------------------------------------------------------------------- /LibGit2Sharp/Core/HistoryRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/HistoryRewriter.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/ILazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/ILazy.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/LambdaEqualityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/LambdaEqualityHelper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/LazyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/LazyGroup.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/LookUpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/LookUpOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/NativeMethods.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/ObjectSafeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/ObjectSafeWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Opaques.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Opaques.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/PackbuilderCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/PackbuilderCallbacks.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/PathCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/PathCase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Platform.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Proxy.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/PushTransferProgressCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/PushTransferProgressCallbacks.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/RawContentStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/RawContentStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/RepositoryOpenFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/RepositoryOpenFlags.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/StringExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/SubmoduleLazyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/SubmoduleLazyGroup.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/TarWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/TarWriter.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/Utf8Marshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/Utf8Marshaler.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Core/WriteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Core/WriteStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Credentials.cs -------------------------------------------------------------------------------- /LibGit2Sharp/CurrentOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/CurrentOperation.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DefaultCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DefaultCredentials.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DescribeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DescribeOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DescribeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DescribeStrategy.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DetachedHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DetachedHead.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Diff.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DiffAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DiffAlgorithm.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DiffModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DiffModifiers.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DiffTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DiffTargets.cs -------------------------------------------------------------------------------- /LibGit2Sharp/DirectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/DirectReference.cs -------------------------------------------------------------------------------- /LibGit2Sharp/EmptyCommitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/EmptyCommitException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/EntryExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/EntryExistsException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ExplicitPathsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ExplicitPathsOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FetchHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FetchHead.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FetchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FetchOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FetchOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FetchOptionsBase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FileStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FileStatus.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Filter.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FilterAttributeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FilterAttributeEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FilterMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FilterMode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FilterRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FilterRegistration.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FilterSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FilterSource.cs -------------------------------------------------------------------------------- /LibGit2Sharp/FilteringOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/FilteringOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/GitLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/GitLink.cs -------------------------------------------------------------------------------- /LibGit2Sharp/GitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/GitObject.cs -------------------------------------------------------------------------------- /LibGit2Sharp/GitObjectMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/GitObjectMetadata.cs -------------------------------------------------------------------------------- /LibGit2Sharp/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/GlobalSettings.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Handlers.cs -------------------------------------------------------------------------------- /LibGit2Sharp/HistoryDivergence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/HistoryDivergence.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IBelongToARepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IBelongToARepository.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ICommitLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ICommitLog.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IDiffResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IDiffResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IQueryableCommitLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IQueryableCommitLog.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IRepository.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Identity.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Ignore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Ignore.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Index.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IndexEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IndexNameEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IndexNameEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IndexNameEntryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IndexNameEntryCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IndexReucEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IndexReucEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/IndexReucEntryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/IndexReucEntryCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/InvalidSpecificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/InvalidSpecificationException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/LibGit2Sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LibGit2Sharp.csproj -------------------------------------------------------------------------------- /LibGit2Sharp/LibGit2SharpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LibGit2SharpException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Line.cs -------------------------------------------------------------------------------- /LibGit2Sharp/LockedFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LockedFileException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Log.cs -------------------------------------------------------------------------------- /LibGit2Sharp/LogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LogConfiguration.cs -------------------------------------------------------------------------------- /LibGit2Sharp/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LogEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/LogLevel.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MatchedPathsAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MatchedPathsAggregator.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeAndCheckoutOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeAndCheckoutOptionsBase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeFetchHeadNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeFetchHeadNotFoundException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeHead.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeOptionsBase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeTreeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeTreeOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/MergeTreeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/MergeTreeResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Mode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/NameConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/NameConflictException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/NativeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/NativeException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Network.cs -------------------------------------------------------------------------------- /LibGit2Sharp/NonFastForwardException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/NonFastForwardException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/NotFoundException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Note.cs -------------------------------------------------------------------------------- /LibGit2Sharp/NoteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/NoteCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ObjectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ObjectDatabase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ObjectId.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ObjectType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/OdbBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/OdbBackend.cs -------------------------------------------------------------------------------- /LibGit2Sharp/OdbBackendStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/OdbBackendStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PackBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PackBuilder.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Patch.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PatchEntryChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PatchEntryChanges.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PatchStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PatchStats.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PeelException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PeelException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ProxyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ProxyOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ProxyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ProxyType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PullOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PullOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PushOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PushOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PushResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PushResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PushStatusError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PushStatusError.cs -------------------------------------------------------------------------------- /LibGit2Sharp/PushUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/PushUpdate.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Rebase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Rebase.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RebaseOperationImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RebaseOperationImpl.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RebaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RebaseOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RebaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RebaseResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RebaseStepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RebaseStepInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RecurseSubmodulesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RecurseSubmodulesException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RefSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RefSpec.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RefSpecCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RefSpecCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RefSpecDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RefSpecDirection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Reference.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ReferenceCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ReferenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ReferenceExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ReferenceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ReferenceWrapper.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ReflogCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ReflogCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ReflogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ReflogEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Remote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Remote.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoteCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoteCallbacks.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoteCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoteCompletionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoteCompletionType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoteRedirectMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoteRedirectMode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoteUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoteUpdater.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RemoveFromIndexException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RemoveFromIndexException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RenameDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RenameDetails.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Repository.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryInformation.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryNotFoundException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryOperationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryOperationContext.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RepositoryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RepositoryStatus.cs -------------------------------------------------------------------------------- /LibGit2Sharp/ResetMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/ResetMode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RevertOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RevertOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RevertResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RevertResult.cs -------------------------------------------------------------------------------- /LibGit2Sharp/RewriteHistoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/RewriteHistoryOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SecureUsernamePasswordCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SecureUsernamePasswordCredentials.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Signature.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SignatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SignatureInfo.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SimilarityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SimilarityOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SmartSubtransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SmartSubtransport.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SmartSubtransportRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SmartSubtransportRegistration.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SmartSubtransportRegistrationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SmartSubtransportRegistrationData.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SmartSubtransportStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SmartSubtransportStream.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StageLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StageLevel.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StageOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Stash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Stash.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StashApplyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StashApplyOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StashApplyProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StashApplyProgress.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StashApplyStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StashApplyStatus.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StashCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StashCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StashModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StashModifiers.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StatusEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StatusEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/StatusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/StatusOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Submodule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Submodule.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleExtensions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleIgnore.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleRecurse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleRecurse.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleStatus.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleUpdate.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SubmoduleUpdateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SubmoduleUpdateOptions.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SupportedCredentialTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SupportedCredentialTypes.cs -------------------------------------------------------------------------------- /LibGit2Sharp/SymbolicReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/SymbolicReference.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Tag.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TagAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TagAnnotation.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TagCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TagFetchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TagFetchMode.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TarArchiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TarArchiver.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TransferProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TransferProgress.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TransientIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TransientIndex.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Tree.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeChanges.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeDefinition.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeEntry.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeEntryChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeEntryChanges.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeEntryDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeEntryDefinition.cs -------------------------------------------------------------------------------- /LibGit2Sharp/TreeEntryTargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/TreeEntryTargetType.cs -------------------------------------------------------------------------------- /LibGit2Sharp/UnbornBranchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/UnbornBranchException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/UnmatchedPathException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/UnmatchedPathException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/UnmergedIndexEntriesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/UnmergedIndexEntriesException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/UserCanceledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/UserCanceledException.cs -------------------------------------------------------------------------------- /LibGit2Sharp/UsernamePasswordCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/UsernamePasswordCredentials.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Version.cs -------------------------------------------------------------------------------- /LibGit2Sharp/VoidReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/VoidReference.cs -------------------------------------------------------------------------------- /LibGit2Sharp/Worktree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/Worktree.cs -------------------------------------------------------------------------------- /LibGit2Sharp/WorktreeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/WorktreeCollection.cs -------------------------------------------------------------------------------- /LibGit2Sharp/WorktreeLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/LibGit2Sharp/WorktreeLock.cs -------------------------------------------------------------------------------- /NativeLibraryLoadTestApp/TestApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/NativeLibraryLoadTestApp/TestApp.cs -------------------------------------------------------------------------------- /NativeLibraryLoadTestApp/x64/NativeLibraryLoadTestApp.x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/NativeLibraryLoadTestApp/x64/NativeLibraryLoadTestApp.x64.csproj -------------------------------------------------------------------------------- /NativeLibraryLoadTestApp/x86/NativeLibraryLoadTestApp.x86.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/NativeLibraryLoadTestApp/x86/NativeLibraryLoadTestApp.x86.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/README.md -------------------------------------------------------------------------------- /Targets/CodeGenerator.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/Targets/CodeGenerator.targets -------------------------------------------------------------------------------- /Targets/GenerateNativeDllName.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/Targets/GenerateNativeDllName.targets -------------------------------------------------------------------------------- /TrimmingTestApp/Program.cs: -------------------------------------------------------------------------------- 1 | using LibGit2Sharp; 2 | 3 | _ = new Repository(); 4 | -------------------------------------------------------------------------------- /TrimmingTestApp/TrimmingTestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/TrimmingTestApp/TrimmingTestApp.csproj -------------------------------------------------------------------------------- /acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/acknowledgments.md -------------------------------------------------------------------------------- /libgit2sharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/libgit2sharp.snk -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/nuget.config -------------------------------------------------------------------------------- /square-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libgit2/libgit2sharp/HEAD/square-logo.png --------------------------------------------------------------------------------