The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SwiftGitX, reference main (fcfb71), with Swift 6.1 for macOS (SPM) on 2 Dec 2025 03:42:58 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ibrahimcetin/SwiftGitX.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ibrahimcetin/SwiftGitX
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at fcfb71e Refactor initialization in SwiftGitXTest and SignatureRawTests to remove async requirement to fix github action
Cloned https://github.com/ibrahimcetin/SwiftGitX.git
Revision (git rev-parse @):
fcfb71e3dcbbaa70d120b98b7477ce173074aec3
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ibrahimcetin/SwiftGitX.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/ibrahimcetin/SwiftGitX.git
https://github.com/ibrahimcetin/SwiftGitX.git
{
  "dependencies" : [
    {
      "identity" : "libgit2",
      "requirement" : {
        "exact" : [
          "1.9.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ibrahimcetin/libgit2.git"
    }
  ],
  "manifest_display_name" : "SwiftGitX",
  "name" : "SwiftGitX",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftGitX",
      "targets" : [
        "SwiftGitX"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftGitXTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftGitXTests",
      "path" : "Tests/SwiftGitXTests",
      "sources" : [
        "CollectionTests/BranchCollectionTests.swift",
        "CollectionTests/ConfigCollectionTests.swift",
        "CollectionTests/IndexCollectionTests.swift",
        "CollectionTests/ReferenceCollectionTests.swift",
        "CollectionTests/RemoteCollectionTests.swift",
        "CollectionTests/StashCollectionTests.swift",
        "CollectionTests/TagCollectionTests.swift",
        "ExtensionTests/URLRelativePathTests.swift",
        "ModelTests/OIDTests.swift",
        "ModelTests/SignatureTests.swift",
        "RepositoryTests/RepositoryAddTests.swift",
        "RepositoryTests/RepositoryCloneTests.swift",
        "RepositoryTests/RepositoryCommitTests.swift",
        "RepositoryTests/RepositoryDiffTests.swift",
        "RepositoryTests/RepositoryFetchTests.swift",
        "RepositoryTests/RepositoryLogTests.swift",
        "RepositoryTests/RepositoryPatchTests.swift",
        "RepositoryTests/RepositoryPropertyTests.swift",
        "RepositoryTests/RepositoryPushTests.swift",
        "RepositoryTests/RepositoryResetTests.swift",
        "RepositoryTests/RepositoryRestoreTests.swift",
        "RepositoryTests/RepositoryRevertTests.swift",
        "RepositoryTests/RepositoryShowTests.swift",
        "RepositoryTests/RepositoryStatusTests.swift",
        "RepositoryTests/RepositorySwitchTests.swift",
        "RepositoryTests/RepositoryTests.swift",
        "SwiftGitXTests.swift",
        "Tags.swift"
      ],
      "target_dependencies" : [
        "SwiftGitX"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftGitX",
      "module_type" : "SwiftTarget",
      "name" : "SwiftGitX",
      "path" : "Sources/SwiftGitX",
      "product_dependencies" : [
        "libgit2"
      ],
      "product_memberships" : [
        "SwiftGitX"
      ],
      "sources" : [
        "Collections/BranchCollection.swift",
        "Collections/ConfigCollection.swift",
        "Collections/IndexCollection.swift",
        "Collections/ReferenceCollection.swift",
        "Collections/RemoteCollection.swift",
        "Collections/StashCollection.swift",
        "Collections/TagCollection.swift",
        "Helpers/Constants.swift",
        "Helpers/Extensions/Array+withGitStrArray.swift",
        "Helpers/Extensions/URL+relativePath.swift",
        "Helpers/Factory/ObjectFactory.swift",
        "Helpers/Factory/ReferenceFactory.swift",
        "Helpers/LibGit2RawRepresentable.swift",
        "Helpers/SwiftGitXError.swift",
        "Models/Diff/Diff.swift",
        "Models/Diff/Patch.swift",
        "Models/Diff/StatusEntry.swift",
        "Models/FileMode.swift",
        "Models/Options/CheckoutOptions.swift",
        "Models/Options/CloneOptions.swift",
        "Models/Options/CommitOptions.swift",
        "Models/Options/DiffOption.swift",
        "Models/Options/LogSortingOption.swift",
        "Models/Options/ResetOption.swift",
        "Models/Options/RestoreOption.swift",
        "Models/Options/StashOption.swift",
        "Models/Options/StatusOption.swift",
        "Models/Progress/CheckoutProgress.swift",
        "Models/Progress/TransferProgress.swift",
        "Models/Remote.swift",
        "Models/Signature.swift",
        "Models/StashEntry.swift",
        "Models/Types/BranchType.swift",
        "Models/Types/ObjectType.swift",
        "Models/Types/ReferenceType.swift",
        "Models/Types/TagType.swift",
        "Objects/Blob.swift",
        "Objects/Commit.swift",
        "Objects/OID.swift",
        "Objects/Object.swift",
        "Objects/Tree.swift",
        "References/Branch.swift",
        "References/Reference.swift",
        "References/Tag.swift",
        "Repository/Repository+HEAD.swift",
        "Repository/Repository+checkout.swift",
        "Repository/Repository+clone.swift",
        "Repository/Repository+commit.swift",
        "Repository/Repository+diff.swift",
        "Repository/Repository+fetch.swift",
        "Repository/Repository+index.swift",
        "Repository/Repository+log.swift",
        "Repository/Repository+patch.swift",
        "Repository/Repository+push.swift",
        "Repository/Repository+reset.swift",
        "Repository/Repository+restore.swift",
        "Repository/Repository+revert.swift",
        "Repository/Repository+show.swift",
        "Repository/Repository+status.swift",
        "Repository/Repository+switch.swift",
        "Repository/Repository.swift",
        "Sequences/BranchSequence.swift",
        "Sequences/CommitSequence.swift",
        "Sequences/ReferenceIterator.swift",
        "Sequences/RemoteIterator.swift",
        "Sequences/StashIterator.swift",
        "Sequences/TagIterator.swift",
        "SwiftGitX.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/212] Write swift-version-2F0A5646E1D333AE.txt
[1/212] Compiling pcre_globals.c
[2/212] Compiling pcre_fullinfo.c
[3/212] Compiling pcre_config.c
[4/212] Compiling pcre_dfa_exec.c
[5/212] Compiling pcre_compile.c
[6/212] Compiling pcre_exec.c
[7/212] Compiling pcre_get.c
[8/212] Compiling zstream.c
[9/212] Compiling tsort.c
[10/212] Compiling vector.c
[11/212] Compiling thread.c
[12/212] Compiling map.c
[13/212] Compiling utf8.c
[14/212] Compiling strlist.c
[15/212] Compiling process.c
[16/212] Compiling str.c
[17/212] Compiling wildmatch.c
[18/212] Compiling runtime.c
[19/212] Compiling regexp.c
[20/212] Compiling rand.c
[21/212] Compiling pqueue.c
[22/212] Compiling sortedcache.c
[23/212] Compiling posix.c
[24/212] Compiling pool.c
[25/212] Compiling net.c
[26/212] Compiling parse.c
[27/212] Compiling common_crypto.c
[28/212] Compiling hash.c
[29/212] Compiling futils.c
[30/212] Compiling filebuf.c
[31/212] Compiling fs_path.c
[32/212] Compiling win32_leakcheck.c
[33/212] Compiling stdalloc.c
[34/212] Compiling date.c
[35/212] Compiling errors.c
[36/212] Compiling failalloc.c
[37/212] Compiling util.c
[38/212] Compiling debugalloc.c
[39/212] Compiling realpath.c
[40/212] Compiling alloc.c
[41/212] Compiling varint.c
[42/212] Compiling winhttp.c
[43/212] Compiling worktree.c
[44/212] Compiling tree-cache.c
[45/212] Compiling ssh_libssh2.c
[46/212] Compiling ssh.c
[47/212] Compiling tree.c
[48/212] Compiling ssh_exec.c
[49/212] Compiling httpparser.c
[50/212] Compiling smart_pkt.c
[51/212] Compiling smart.c
[52/212] Compiling smart_protocol.c
[53/212] Compiling local.c
[54/212] Compiling http.c
[55/212] Compiling credential_helpers.c
[56/212] Compiling git.c
[57/212] Compiling httpclient.c
[58/212] Compiling credential.c
[59/212] Compiling auth_sspi.c
[60/212] Compiling auth_ntlmclient.c
[61/212] Compiling auth_gssapi.c
[62/212] Compiling auth.c
[63/212] Compiling transport.c
[64/212] Compiling trace.c
[65/212] Compiling trailer.c
[66/212] Compiling tls.c
[67/212] Compiling transaction.c
[68/212] Compiling sysdir.c
[69/212] Compiling tag.c
[70/212] Compiling schannel.c
[71/212] Compiling socket.c
[72/212] Compiling openssl_legacy.c
[73/212] Compiling registry.c
[74/212] Compiling submodule.c
[75/212] Compiling openssl_dynamic.c
[76/212] Compiling mbedtls.c
[77/212] Compiling openssl.c
[78/212] Compiling strarray.c
[79/212] Compiling status.c
[80/212] Compiling stash.c
[81/212] Compiling signature.c
[82/212] Compiling settings.c
[83/212] Compiling revwalk.c
[84/212] Compiling revert.c
[85/212] Compiling reset.c
[86/212] Compiling revparse.c
[87/212] Compiling refspec.c
[88/212] Compiling reflog.c
[89/212] Compiling repository.c
[90/212] Compiling refs.c
[91/212] Compiling refdb.c
[92/212] Compiling remote.c
[93/212] Compiling reader.c
[94/212] Compiling refdb_fs.c
[95/212] Compiling rebase.c
[96/212] Compiling proxy.c
[97/212] Compiling push.c
[98/212] Compiling stransport.c
[99/212] Compiling pathspec.c
[100/212] Compiling path.c
[101/212] Compiling patch.c
[102/212] Compiling patch_parse.c
[103/212] Compiling oidarray.c
[104/212] Compiling patch_generate.c
[105/212] Compiling oid.c
[106/212] Compiling pack.c
[107/212] Compiling pack-objects.c
[108/212] Compiling odb_mempack.c
[109/212] Compiling odb_pack.c
[110/212] Compiling object_api.c
[111/212] Compiling odb_loose.c
[112/212] Compiling object.c
[113/212] Compiling odb.c
[114/212] Compiling notes.c
[115/212] Compiling message.c
[116/212] Compiling mwindow.c
[117/212] Compiling midx.c
[118/212] Compiling merge_driver.c
[119/212] Compiling merge_file.c
[120/212] Compiling libgit2.c
[121/212] Compiling mailmap.c
[122/212] Compiling index_map.c
[123/212] Compiling indexer.c
[124/212] Compiling iterator.c
[125/212] Compiling ident.c
[126/212] Compiling ignore.c
[127/212] Compiling merge.c
[128/212] Compiling hashsig.c
[129/212] Compiling graph.c
[130/212] Compiling grafts.c
[131/212] Compiling index.c
[132/212] Compiling filter.c
[133/212] Compiling fetchhead.c
[134/212] Compiling fetch.c
[135/212] Compiling email.c
[136/212] Compiling diff_stats.c
[137/212] Compiling diff_xdiff.c
[138/212] Compiling diff_tform.c
[139/212] Compiling diff_parse.c
[140/212] Compiling diff_print.c
[141/212] Compiling diff_file.c
[142/212] Compiling diff_generate.c
[143/212] Compiling diff_driver.c
[144/212] Compiling diff.c
[145/212] Compiling crlf.c
[146/212] Compiling describe.c
[147/212] Compiling delta.c
[148/212] Compiling config_snapshot.c
[149/212] Compiling config_parse.c
[150/212] Compiling config_mem.c
[151/212] Compiling config_cache.c
[152/212] Compiling config_list.c
[153/212] Compiling config_file.c
[154/212] Compiling commit_list.c
[155/212] Compiling config.c
[156/212] Compiling clone.c
[157/212] Compiling cherrypick.c
[158/212] Compiling commit.c
[159/212] Compiling commit_graph.c
[160/212] Compiling buf.c
[161/212] Compiling cache.c
[162/212] Compiling checkout.c
[163/212] Compiling blob.c
[164/212] Compiling branch.c
[165/212] Compiling blame_git.c
[166/212] Compiling blame.c
[167/212] Compiling attrcache.c
[168/212] Compiling zutil.c
[169/212] Compiling attr.c
[170/212] Compiling attr_file.c
[171/212] Compiling inftrees.c
[172/212] Compiling annotated_commit.c
[173/212] Compiling apply.c
[174/212] Compiling trees.c
[175/212] Compiling inffast.c
[176/212] Compiling inflate.c
[177/212] Compiling adler32.c
[178/212] Compiling infback.c
[179/212] Compiling crc32.c
[180/212] Compiling deflate.c
[181/212] Compiling xprepare.c
[182/212] Compiling xutils.c
[183/212] Compiling xpatience.c
[184/212] Compiling xhistogram.c
[185/212] Compiling xmerge.c
[186/212] Compiling xemit.c
[187/212] Compiling pcre_xclass.c
[188/212] Compiling pcreposix.c
[189/212] Compiling pcre_version.c
[190/212] Compiling xdiffi.c
[191/212] Compiling pcre_valid_utf8.c
[192/212] Compiling pcre_ucd.c
[193/212] Compiling pcre_tables.c
[194/212] Compiling pcre_string_utils.c
[195/212] Compiling pcre_refcount.c
[196/212] Compiling pcre_study.c
[197/212] Compiling pcre_ord2utf8.c
[198/212] Compiling pcre_newline.c
[199/212] Compiling pcre_printint.c
[200/212] Compiling pcre_maketables.c
[201/212] Compiling pcre_jit_compile.c
[202/212] Write sources
[203/212] Compiling pcre_chartables.c
[204/212] Compiling pcre_byte_order.c
[205/212] Compiling util.c
[206/212] Compiling http.c
[207/212] Compiling unicode_builtin.c
[208/212] Compiling crypt_commoncrypto.c
[209/212] Compiling api.c
[210/212] Compiling ntlm.c
[211/212] Compiling llhttp.c
[213/275] Emitting module SwiftGitX
[214/281] Compiling SwiftGitX DiffOption.swift
[215/281] Compiling SwiftGitX LogSortingOption.swift
[216/281] Compiling SwiftGitX ResetOption.swift
[217/281] Compiling SwiftGitX RestoreOption.swift
[218/281] Compiling SwiftGitX StashOption.swift
[219/281] Compiling SwiftGitX StatusOption.swift
[220/281] Compiling SwiftGitX CheckoutProgress.swift
[221/281] Compiling SwiftGitX CommitSequence.swift
[222/281] Compiling SwiftGitX ReferenceIterator.swift
[223/281] Compiling SwiftGitX RemoteIterator.swift
[224/281] Compiling SwiftGitX StashIterator.swift
[225/281] Compiling SwiftGitX TagIterator.swift
[226/281] Compiling SwiftGitX SwiftGitX.swift
[227/281] Compiling SwiftGitX Repository+revert.swift
[228/281] Compiling SwiftGitX Repository+show.swift
[229/281] Compiling SwiftGitX Repository+status.swift
[230/281] Compiling SwiftGitX Repository+switch.swift
[231/281] Compiling SwiftGitX Repository.swift
[232/281] Compiling SwiftGitX BranchSequence.swift
[233/281] Compiling SwiftGitX Diff.swift
[234/281] Compiling SwiftGitX Patch.swift
[235/281] Compiling SwiftGitX StatusEntry.swift
[236/281] Compiling SwiftGitX FileMode.swift
[237/281] Compiling SwiftGitX CheckoutOptions.swift
[238/281] Compiling SwiftGitX CloneOptions.swift
[239/281] Compiling SwiftGitX CommitOptions.swift
[240/281] Compiling SwiftGitX Reference.swift
[241/281] Compiling SwiftGitX Tag.swift
[242/281] Compiling SwiftGitX Repository+HEAD.swift
[243/281] Compiling SwiftGitX Repository+checkout.swift
[244/281] Compiling SwiftGitX Repository+clone.swift
[245/281] Compiling SwiftGitX Repository+commit.swift
[246/281] Compiling SwiftGitX Repository+diff.swift
[247/281] Compiling SwiftGitX TagType.swift
[248/281] Compiling SwiftGitX Blob.swift
[249/281] Compiling SwiftGitX Commit.swift
[250/281] Compiling SwiftGitX OID.swift
[251/281] Compiling SwiftGitX Object.swift
[252/281] Compiling SwiftGitX Tree.swift
[253/281] Compiling SwiftGitX Branch.swift
[254/281] Compiling SwiftGitX BranchCollection.swift
[255/281] Compiling SwiftGitX ConfigCollection.swift
[256/281] Compiling SwiftGitX IndexCollection.swift
[257/281] Compiling SwiftGitX ReferenceCollection.swift
[258/281] Compiling SwiftGitX RemoteCollection.swift
[259/281] Compiling SwiftGitX StashCollection.swift
[260/281] Compiling SwiftGitX TagCollection.swift
[261/281] Compiling SwiftGitX Repository+fetch.swift
[262/281] Compiling SwiftGitX Repository+index.swift
[263/281] Compiling SwiftGitX Repository+log.swift
[264/281] Compiling SwiftGitX Repository+patch.swift
[265/281] Compiling SwiftGitX Repository+push.swift
[266/281] Compiling SwiftGitX Repository+reset.swift
[267/281] Compiling SwiftGitX Repository+restore.swift
[268/281] Compiling SwiftGitX TransferProgress.swift
[269/281] Compiling SwiftGitX Remote.swift
[270/281] Compiling SwiftGitX Signature.swift
[271/281] Compiling SwiftGitX StashEntry.swift
[272/281] Compiling SwiftGitX BranchType.swift
[273/281] Compiling SwiftGitX ObjectType.swift
[274/281] Compiling SwiftGitX ReferenceType.swift
[275/281] Compiling SwiftGitX Constants.swift
[276/281] Compiling SwiftGitX Array+withGitStrArray.swift
[277/281] Compiling SwiftGitX URL+relativePath.swift
[278/281] Compiling SwiftGitX ObjectFactory.swift
[279/281] Compiling SwiftGitX ReferenceFactory.swift
[280/281] Compiling SwiftGitX LibGit2RawRepresentable.swift
[281/281] Compiling SwiftGitX SwiftGitXError.swift
Build complete! (18.38s)
Fetching https://github.com/ibrahimcetin/libgit2.git
[1/107153] Fetching libgit2
Fetched https://github.com/ibrahimcetin/libgit2.git from cache (3.00s)
Computing version for https://github.com/ibrahimcetin/libgit2.git
Computed https://github.com/ibrahimcetin/libgit2.git at 1.9.2 (6.18s)
Creating working copy for https://github.com/ibrahimcetin/libgit2.git
Working copy of https://github.com/ibrahimcetin/libgit2.git resolved at 1.9.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "libgit2",
      "requirement" : {
        "exact" : [
          "1.9.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ibrahimcetin/libgit2.git"
    }
  ],
  "manifest_display_name" : "SwiftGitX",
  "name" : "SwiftGitX",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftGitX",
      "targets" : [
        "SwiftGitX"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftGitXTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftGitXTests",
      "path" : "Tests/SwiftGitXTests",
      "sources" : [
        "CollectionTests/BranchCollectionTests.swift",
        "CollectionTests/ConfigCollectionTests.swift",
        "CollectionTests/IndexCollectionTests.swift",
        "CollectionTests/ReferenceCollectionTests.swift",
        "CollectionTests/RemoteCollectionTests.swift",
        "CollectionTests/StashCollectionTests.swift",
        "CollectionTests/TagCollectionTests.swift",
        "ExtensionTests/URLRelativePathTests.swift",
        "ModelTests/OIDTests.swift",
        "ModelTests/SignatureTests.swift",
        "RepositoryTests/RepositoryAddTests.swift",
        "RepositoryTests/RepositoryCloneTests.swift",
        "RepositoryTests/RepositoryCommitTests.swift",
        "RepositoryTests/RepositoryDiffTests.swift",
        "RepositoryTests/RepositoryFetchTests.swift",
        "RepositoryTests/RepositoryLogTests.swift",
        "RepositoryTests/RepositoryPatchTests.swift",
        "RepositoryTests/RepositoryPropertyTests.swift",
        "RepositoryTests/RepositoryPushTests.swift",
        "RepositoryTests/RepositoryResetTests.swift",
        "RepositoryTests/RepositoryRestoreTests.swift",
        "RepositoryTests/RepositoryRevertTests.swift",
        "RepositoryTests/RepositoryShowTests.swift",
        "RepositoryTests/RepositoryStatusTests.swift",
        "RepositoryTests/RepositorySwitchTests.swift",
        "RepositoryTests/RepositoryTests.swift",
        "SwiftGitXTests.swift",
        "Tags.swift"
      ],
      "target_dependencies" : [
        "SwiftGitX"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftGitX",
      "module_type" : "SwiftTarget",
      "name" : "SwiftGitX",
      "path" : "Sources/SwiftGitX",
      "product_dependencies" : [
        "libgit2"
      ],
      "product_memberships" : [
        "SwiftGitX"
      ],
      "sources" : [
        "Collections/BranchCollection.swift",
        "Collections/ConfigCollection.swift",
        "Collections/IndexCollection.swift",
        "Collections/ReferenceCollection.swift",
        "Collections/RemoteCollection.swift",
        "Collections/StashCollection.swift",
        "Collections/TagCollection.swift",
        "Helpers/Constants.swift",
        "Helpers/Extensions/Array+withGitStrArray.swift",
        "Helpers/Extensions/URL+relativePath.swift",
        "Helpers/Factory/ObjectFactory.swift",
        "Helpers/Factory/ReferenceFactory.swift",
        "Helpers/LibGit2RawRepresentable.swift",
        "Helpers/SwiftGitXError.swift",
        "Models/Diff/Diff.swift",
        "Models/Diff/Patch.swift",
        "Models/Diff/StatusEntry.swift",
        "Models/FileMode.swift",
        "Models/Options/CheckoutOptions.swift",
        "Models/Options/CloneOptions.swift",
        "Models/Options/CommitOptions.swift",
        "Models/Options/DiffOption.swift",
        "Models/Options/LogSortingOption.swift",
        "Models/Options/ResetOption.swift",
        "Models/Options/RestoreOption.swift",
        "Models/Options/StashOption.swift",
        "Models/Options/StatusOption.swift",
        "Models/Progress/CheckoutProgress.swift",
        "Models/Progress/TransferProgress.swift",
        "Models/Remote.swift",
        "Models/Signature.swift",
        "Models/StashEntry.swift",
        "Models/Types/BranchType.swift",
        "Models/Types/ObjectType.swift",
        "Models/Types/ReferenceType.swift",
        "Models/Types/TagType.swift",
        "Objects/Blob.swift",
        "Objects/Commit.swift",
        "Objects/OID.swift",
        "Objects/Object.swift",
        "Objects/Tree.swift",
        "References/Branch.swift",
        "References/Reference.swift",
        "References/Tag.swift",
        "Repository/Repository+HEAD.swift",
        "Repository/Repository+checkout.swift",
        "Repository/Repository+clone.swift",
        "Repository/Repository+commit.swift",
        "Repository/Repository+diff.swift",
        "Repository/Repository+fetch.swift",
        "Repository/Repository+index.swift",
        "Repository/Repository+log.swift",
        "Repository/Repository+patch.swift",
        "Repository/Repository+push.swift",
        "Repository/Repository+reset.swift",
        "Repository/Repository+restore.swift",
        "Repository/Repository+revert.swift",
        "Repository/Repository+show.swift",
        "Repository/Repository+status.swift",
        "Repository/Repository+switch.swift",
        "Repository/Repository.swift",
        "Sequences/BranchSequence.swift",
        "Sequences/CommitSequence.swift",
        "Sequences/ReferenceIterator.swift",
        "Sequences/RemoteIterator.swift",
        "Sequences/StashIterator.swift",
        "Sequences/TagIterator.swift",
        "SwiftGitX.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.