ConceptioArchivearXiv CS
arXiv CSopen access

Claimed or Attested? A Commit-Signature Dataset and Identity Trust Tiers across the World of Code

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
cryptography, security, privacy, cybersecurity

Claimed or Attested? A Commit-Signature Dataset and Identity Trust Tiers across the World of Code Audris Mockus University of Tennessee, Knoxville Knoxville, TN, USA [email protected]

arXiv:2607.06194v1 [cs.CR] 7 Jul 2026

Abstract An author string in a git commit is free text the committer typed, so identity resolution over a global commit corpus rests on a claim that nothing in the commit verifies. A cryptographically signed commit is different: it binds the commit to a key the committer controls, and when that key ties back to a real-world identity the git identity becomes attested rather than merely claimed. We release the first commit-signature axis for the World of Code (WoC), extracted for the V2604 collection. The signature travels in the commit object’s gpgsig header and is already carried, unparsed, in the commitmessage field of the WoC commit tables, so the axis is a scan over existing tables rather than a re-read of the object database. Over the V2604 corpus of 5,866,595,698 commits, 17.59% carry a signature (PGP dominant at 98.96%, with a growing minority of SSH and X.509/sigstore signatures), or 1,031,721,316 signed commits. We release the per-commit signature map c2sigFull, a key-to-author graph gated so that shared organization and continuous-integration keys are separated from person keys, and A2trust, a per-identity attestation tier (unsigned, signed, real-world-bound, cross-corpus attested) that extends the published A2cls identity-class dataset. The signature axis is a precision anchor, not a coverage layer: signed commits skew toward security-conscious developers, a population that overlaps the scholarly authors a bibliography join targets. We use the person keys to build a cryptographically grounded alias gold that calibrates the heuristic WoC alias map independently of hand-labeled pairs, and to attach an attestation provenance to science-to-software identity links. All artifacts are released as a self-contained, independently hosted replication package keyed to the WoC V2604 collection.

Keywords

make the gap concrete. Unrelated people commit as root, and wellknown names and addresses are reused by impostors; the WoC bad-identity stoplist literally enumerates such strings. A name in a commit is a claim, not an attestation. Scholarly authorship sits at the opposite corner of the same problem. A paper carries the author’s real name because reputation is the point of publishing, so impersonation is rare and the dominant error is homonymy: many people named J. Smith, or one person whose transliterated name is split across spellings. When a study links software authors to paper authors, it joins a low-impersonation, high-homonym universe to a high-impersonation, high-homonym one, and the join inherits the weaker guarantee. A cryptographically signed commit changes the epistemics on the software side. Git supports signing a commit with a PGP key, an SSH key, or an X.509 certificate; the signature binds the commit content to a key the committer controls. If the key ties to a realworld identity, through a PGP user-id email, an SSH key registered on a GitHub account, or an X.509 or OIDC subject, then the git identity used on that commit is attested at the same level the paper side enjoys, and the bibliography join becomes defensible rather than heuristic. This is the opportunity the dataset captures. We release the first commit-signature axis for World of Code [3, 4]. The construction rests on an observation about how WoC already stores commits: the gpgsig header, which git places between the committer line and the message, survives into the message field of the WoC commit tables because the table generator appends every post-committer header line to the message. The signature is therefore already on disk, and extracting it is a scan over the existing V2604 commit tables rather than a large-RAM pass over the object database (Figure 1). We document the construction and results as an experiment log (Exps. S1–S5). Our contributions are the released artifacts and the findings about them:

World of Code, commit signing, GPG, SSH signatures, sigstore, developer identity, author disambiguation, cryptographic attestation, mining software repositories

1

Introduction

Every study that mines a global commit corpus has to decide when two author strings denote the same person and when one string denotes two. The World of Code alias map, like other disambiguation systems, resolves this from co-occurrence of names, emails, and GitHub logins [1]. Those signals are useful, but they share a blind spot: the author field of a commit is free text the committer chose, so every merge and every split the map produces rests on a claim that nothing in the commit itself corroborates. Vanity strings

• A per-commit signature map c2sigFull, labeling each signed commit with its signature family, extracted for the whole V2604 corpus from the existing commit tables with no object-database pass (Exp. S1), together with the prevalence of commit signing overall and by identity class (the adoption curve over author-time is a planned extension). • A key-to-identity graph key2A/A2key with a key-fanout gate that separates person keys from shared organization and continuous-integration keys, the signing analogue of the name-spread gate that identity disambiguation already relies on (Exp. S2).

Conference’17, July 2017, Washington, DC, USA

commit object (tree/parent/author/ committer/gpgsig/msg)

WoC generation

WoC commit tables c2datFull (gpgsig appended to message field)

scan (match gpgsig banner)

Audris Mockus

c2sigFull commit;sigtype

author alias map (a2AFullSUG)

join author canonical A

key2A / A2key + fanout gate

person keys

A2trust T0..T3 tiers

Figure 1: The signature already lives in the commit tables. Git writes gpgsig between the committer line and the message; the WoC table generator appends that block to the message field, so a scan over the existing commit tables yields the signature axis. Keys are then joined to authors and gated so that shared organization and CI keys do not act as person anchors.

The dataset is a sibling of two other World of Code data showcases that also confront corpus-level identity and completeness questions: the history-rewrite provenance dataset [6], which separates never-ingested commits from upstream-rewritten ones, and the deforking map [5, 7], which resolves which repositories are the same project. Where those resolve provenance of commits and of repositories, this one resolves provenance of the identity attached to a commit. It also connects to cross-corpus author linking [2], supplying a cryptographic provenance for the science-to-software identity edges that work builds by name and ORCID matching.

3 • A cryptographically grounded alias gold built from author strings co-signed by the same person key, used to calibrate the heuristic WoC alias map independently of handlabeled pairs (Exp. S3). • An identity trust-tier map A2trust (unsigned, signed, real-world-bound, cross-corpus attested) that extends the published A2cls identity-class dataset with a principled confidence axis, and a signature-based test for impersonation on vanity strings (Exp. S4). • A bibliography attestation bridge that upgrades scienceto-software identity links from name-match heuristics to cryptographic anchors where a signing key resolves to a scholarly author, with a sampled verification pass that bounds the residual forgery rate (Exp. S5). The dataset is a drop-in join key for any WoC-scale study: percommit signatures join the commit tables by SHA, and per-identity tiers join the author summary. It does not replace the heuristic alias map; it gives that map an independent, cryptographic check where signing coverage allows, and it marks exactly which identities carry an attestation a downstream analyst can rely on.

2

Related Work

The corpus we extend is World of Code [3, 4], a mirror of public version-control data organized as commit, tree, blob, and relation maps. Identity resolution over it is the ALFAA line of work [1], which disambiguates authors from behavioral and textual co-occurrence of names, emails, and logins, and which we take as the heuristic map this dataset calibrates. The vanity-string and impersonation problem those methods contend with is the motivation for an attested axis: a claim-based resolver cannot, on its own, tell a real owner from an impostor reusing the same string. Commit signing itself has grown from a niche practice to a platform-supported default. Git added SSH-key signing in 2.34, GitHub verifies and displays signature status, and sigstore’s gitsign [8] introduced keyless signing backed by short-lived Fulcio certificates whose subject is a verified OIDC identity. These developments make signatures both more common and more directly tied to a real-world identity than classical PGP web-of-trust, which is what makes a signature axis worth extracting now. We are, to our knowledge, the first to extract and release commit signatures at the scale of a global corpus and to model them as an identity-trust layer rather than a per-repository security check.

Construction

A signed git commit places a gpgsig header after the committer line and before the blank line that separates the header from the message; the signature’s continuation lines are space-prefixed, so the armored block, including its own internal blank line encoded as a single space, does not break the header. Three signature families occur. PGP signatures (—–BEGIN PGP SIGNATURE—–) carry an issuer key-id subpacket that is readable without the public key. SSH signatures (the SSHSIG format, —–BEGIN SSH SIGNATURE—–) embed the signer’s public key, so a fingerprint is derivable with no network access. X.509 and sigstore signatures (—–BEGIN SIGNED MESSAGE—–) carry a subject email or, for gitsign, a short-lived Fulcio certificate whose subject-alternative-name is a verified OIDC identity. The extraction rests on how World of Code already stores commits. The commit-table generator decodes each commit object and splits it on the first blank line into a header block and a message; while parsing the header it appends every line after the committer line to the message list. For a signed commit that trailing block is exactly the gpgsig armored signature, so the signature is carried verbatim, if unparsed, in the message field of the commit tables (c2datFull, one row per collected commit). Recovering the signature axis is therefore a scan over the existing V2604 commit tables, matching the canonical header marker gpgsig —–BEGIN and its family banner, and not a re-read or re-decompression of the object database. The extractor runs as a sharded batch job over the 128 commit-table shards on commodity nodes at 8 GB, with no largememory or object-database exception. The steady-state path is to capture the same header during commit-table generation so the axis rides ingestion; for this release we extract it from the current tables. Each signed commit contributes one row commit;sigtype to c2sigFull, sorted by commit SHA and sharded to match the commit tables. Because the signed commit object already carries its own author line, no commit-to-author join is needed to attribute a signature; the author string is in the same row of the source table, and the canonical identity follows from the existing author alias map.

4

Signature Inventory and Prevalence (Exp. S1)

The headline data contribution is the prevalence of commit signing across the corpus. Scanning all 128 commit-table shards, 1,031,721,316 of the 5,866,595,698 commits in V2604 carry a signature, a corpus rate of 17.59%. The signed share is stable across SHA-space shards (three shards drawn from opposite ends of the hash range give 17.58%, 17.53%, and 17.65%), and the strict

Claimed or Attested? A Commit-Signature Dataset and Identity Trust Tiers across the World of Code

Table 1: Signature family split across all 1,031,721,316 signed commits in V2604 (exact, full corpus). The signed rate is 17.59% of 5,866,595,698 commits.

Conference’17, July 2017, Washington, DC, USA

whole. The signature axis is a precision anchor and a validation layer, never a coverage layer.

5 family

signed commits

share of signed

PGP (—–BEGIN PGP SIGNATURE) SSH (SSHSIG) X.509 / sigstore (SIGNED MESSAGE)

1,021,000,040 10,496,637 224,639

98.96% 1.02% 0.02%

total signed

1,031,721,316

100%

Table 2: Identity-class composition of the distinct commit signers on a representative SHA shard, against the full-corpus A2cls baseline. Signers concentrate in the good/developer class; the low-quality tail is heavily underrepresented. class good / developer bad-by-attribute bot partial local

share of signers

corpus baseline

99.52% 0.36% 0.11% 0.007% 0.005%

94.37% 2.48% 0.52% 0.23% 2.40%

header marker and the loose family banner agree to within 0.01 percentage points, confirming that the matches are genuine header signatures rather than signatures quoted inside a commit message. The three families are separated in Table 1: PGP dominates at 98.96% of signed commits, SSH follows at 1.02%, and X.509/sigstore is a small but growing share (0.02%) concentrated in recent history, consistent with SSH signing arriving in git 2.34 and keyless signing arriving later still. Prevalence alone is a completeness fact; the more useful question is who signs. Mapping the distinct signing ids on a representative shard through the published A2cls identity-class dataset (Table 2), signers are heavily concentrated in the clean population: 99.52% fall in the good (developer) class against a corpus baseline of 94.37%, and every low-quality class is under-represented, most sharply the machine-local ids at 0.005% of signers versus 2.40% of the corpus, a roughly 500× gap. The whole non-good tail is 0.37% of signers against 5.11% of ids at large, so the signing population is about 14× cleaner than the corpus. This is the selection effect the paper leans on: a signature does not reach the hard-to-resolve generic and machine-local ids, it marks a high-precision core. The distinct-signer counts behind Table 2 are drawn from one representative shard and are size-biased in absolute terms, though stable as class fractions; the exact global distinct-signer count follows from the full 128-shard key-graph build (Exp. S2). The adoption curve over commit author-time and the signed-rate over the sciencerepository subset from the cross-corpus linkage are deferred to that build. The selection bias is stated up front and carried through every later claim: signed commits skew toward security-conscious and high-profile developers, which is close to the population a bibliography join targets but is not representative of the corpus as a

Key-to-Identity Graph and the Fanout Gate (Exp. S2)

Joining c2sigFull to the commit identity tables collects, per key handle, the set of author strings, committer strings, GitHub logins, and projects the key signs under. Recovering the key handle needs the signature packet, not just its banner: pgpissuer.pl parses the OpenPGP signature packet to its issuer subpacket, preferring the 20-byte issuer fingerprint (subpacket 33) and falling back to the 8-byte issuer key-id (subpacket 16), normalizing both to the low 16 hex digits (keyid16) that the two forms share. Validated against gpg’s own listing on a sample, the parser resolves an issuer for 99.92% of parsed PGP signatures. A key that signs commits authored by many distinct people is not a person anchor: the GitHub web-flow signing key, which signs web-edit and merge commits on behalf of every user, is the canonical example, and shared deploy keys and continuous-integration signing identities behave the same way. The concentration is heavy. Across the full corpus, 39,077,350 signed authors associate with 586,011 keys through 44,871,077 author–key pairs; the single webflow key 4AEE18F83AFDEB23 binds to 30,440,944 distinct authors and one further platform key to 12,592,731, so two shared keys carry 95.9% of all author–key associations. We apply a key-fanout gate on the number of distinct authors per key, the direct analogue of the name-spread gate that author disambiguation uses to tell anchors from bridges, and label each key as a person key or a shared organization/CI key. A threshold of 50 distinct authors drops the 2,651 shared keys (0.45% of keys, yet 97.6% of associations) and leaves 583,360 person keys, 72.20% (423,095) of them bound to a single author. The surviving person keys give, per key, a cluster of author strings that is high-trust same-identity evidence independent of the name and email heuristics: 156,397 person keys (fanout 2–20) cosign under 549,388 canonical author ids, i.e. 392,991 candidate sameperson merges, author strings the alias map holds apart yet one keyholder demonstrably controls. The outputs are key2AFull (key to authors, with the person/shared label), its inverse A2keyFull, and key2fanoutFull (586,011 keys); the SSH-pubkey and X.509subject handle families are the remaining extension.

6

Signature-Attested Alias Gold and Map Calibration (Exp. S3)

From the person keys we build a cryptographic alias gold: pairs of distinct author strings co-signed by the same person key are the same individual, with a guarantee that does not depend on any name or email similarity. This set is larger and independently grounded compared with the hand-labeled alias pairs used to validate the current map. We measure the heuristic WoC alias map against it as precision (of the map’s merges, the fraction a shared person key corroborates) and recall (of the key-co-signed pairs, the fraction the map already merges), and we triage the disagreements. Pairs co-signed by one key but left unmerged are recall gaps and candidate new edges; pairs merged by the map whose commits carry different keys are either key rotation, one person holding

Conference’17, July 2017, Washington, DC, USA

Audris Mockus

Table 3: Map recall against the signature-attested gold, by key fan-out. Pair-recall is the fraction of key-co-signed raw author-string pairs the production map already merges. The monotone decline tracks shared team/CI keys, not a map defect. fan-out

keys

map unifies

pair-recall

2 3 4–5 6–10 11–20 21–50

86,929 28,176 20,316 14,262 6,714 3,868

63.0% 33.6% 12.8% 1.8% 0.1% 0.0%

0.630 0.460 0.281 0.117 0.041 0.014

Table 4: Attestation-tier distribution over all 62,579,994 canonical authors (A2trust). The ∼51% platform-signed rate (T1) is a web-flow artifact; personal signing control (T2) is 0.74%. tier T0 unsigned T1 platform-signed only T2 person-key attested

7

Trust Tiers and Impersonation (Exp. S4)

We assign each canonical identity an attestation tier and release it as A2trust, an evidence field that extends the published A2cls identity-class dataset. Tier T0 is unsigned, the current default, a claim only. Tier T1 is signed by some key with commits consistent with a single keyholder over that string. Tier T2 adds a realworld binding: a PGP user-id email, an SSH key registered on a GitHub account, or an X.509/OIDC subject. Tier T3 is cross-corpus attested, where the key or identity also resolves to a paper author or ORCID (Exp. S5). The tier gives every downstream consumer a principled confidence axis on identity, orthogonal to the developer/bot/bad/local class already published. The same person keys give a positive test for the impersonation that vanity strings invite. For a high-profile author string, the real owner’s signed commits establish a dominant key; commits bearing the same string but unsigned, or signed by an unrelated key,

share

30,638,625 31,475,971 465,398

49.0% 50.3% 0.74%

Table 5: Key-dispersion per signed author string (39,077,350 strings). One key per string is the norm; high dispersion marks mirrored, vanity, or impersonated strings. distinct keys per string

several keys over time, or genuine over-merges, which the key evidence helps separate. The person keys yield 160,265 signing keys of fan-out 2 to 50 that co-sign 669,147 distinct raw author strings; every string resolves in the production map, so there is no coverage loss, and the cosigned set is larger than the 469k hand-labeled ALFAA pairs while needing no manual labeling. Reading the map against this gold as recall (Table 3), the fraction of key-co-signed strings the map already merges falls monotonically with key fan-out, from 0.630 at fan-out 2 to 0.014 at fan-out 21 to 50. That decline is the team-key confound made visible: a high-fan-out key is shared (CI, deploy, or team), so its co-signed strings are different people the map correctly keeps apart, and only the low-fan-out tier is trustworthy evidence of a single keyholder. Signatures alone are not a clean gold, so we triage the fan-out-2 disagreements. Of the 32,192 fan-out-2 candidate merges the map left apart, only 9,036 (28.1%) carry a corroborating same-person signal, that is a shared email local-part, a shared non-generic domain, or a shared name token; these are genuine recall-repair edges the map missed. The other 23,156 (71.9%) are disjoint identities, two people sharing one key, which the map correctly did not merge. Corroboration is therefore required: the raw fan-out-2 miss rate overstates the recall gap, and the corroborated 9,036 edges (recall_repair_confirmed.tsv) are the high-precision candidates to feed back into the map.

canonical authors

1 2 3–5 6–20 >20

strings

share

34,188,537 4,632,067 213,303 38,042 5,401

87.5% 11.9% 0.55% 0.10% 0.014%

are suspect. Where signing coverage allows, this replaces an entry on the hardcoded bad-identity stoplist with a signature-derived test, and it yields a per-string key-dispersion measure that feeds attestation-based bad-identity detection back into the disambiguation pipeline. Across the 62,579,994 canonical authors the tiers split as Table 4: 49.0% hold no signed commit (T0), 50.3% touched a platform-signed commit but hold no personal key (T1), and only 0.74% hold a personkey (T2). The roughly 51% author-level signed rate is a platform artifact, since half of all authors appear on a web-flow-signed commit while personal signing control stays rare. The person-key gate independently selects the developer class, which is 95.4% of T2 against 2.7% bad, 0.6% bot, and 0.3% local, so the trust tier and the A2cls class corroborate each other without sharing evidence. Impersonation is the inverse gate. Per author string we count the distinct keys that sign it (Table 5); 87.5% of the 39,077,350 signed strings carry exactly one key, and dispersion falls off sharply, so a string signed by many keys is anomalous. Of the 43,443 strings signed by six or more keys, 99.7% are human names rather than bot strings, which places heavily re-signed real developers, mirrored or cherry-picked across repositories, in the same high-dispersion bucket as impersonated famous names. The 5,711 human-name strings signed by at least twenty keys are the strong vanity set: a string this widely re-signed is not a single controllable identity, and it is flagged from signatures alone, replacing an entry on the hand-curated bad-identity stoplist with an evidence-based test.

8

Bibliography Bridge and Sampled Verification (Exp. S5)

For the science subset we resolve the attested chain from a signed commit to a scholarly author: signature to key handle, key handle to a real-world identity (a PGP user-id email, an SSH key resolved to a GitHub login, or an X.509/OIDC subject email), and that identity to an existing GitHub-login edge, email, or ORCID, and on to an OpenAlex author. For each cross-corpus identity edge so backed

Claimed or Attested? A Commit-Signature Dataset and Identity Trust Tiers across the World of Code

Table 6: Trust tier of the WoC endpoint of the 10,021 resolved cross-corpus same_as edges. The 1,207 T2 edges gain an attested_by cryptographic provenance. tier of WoC endpoint

same_as edges

share

866 7,948 1,207

8.6% 79.3% 12.0%

Conference’17, July 2017, Washington, DC, USA

choose to adopt it. The data is released under CC-BY-4.0 and the replication code under the MIT license. (Hugging Face dataset: TODO/woc-commit-signatures-v2604; DOI to be minted on camera-ready.)

10 T0 unsigned T1 platform-signed T2 person-key attested

we attach an attestation provenance recording the key fingerprint or OIDC subject, upgrading the edge from a name-match heuristic to a cryptographic anchor. We measure how many edges gain attestation; comparing the ORCID agreement of attested against name-matched edges is a planned refinement. Even a small attested seed is a high-precision calibrator for the name-based edge growth. Applied to the cross-corpus graph, the bridge upgrades a nameor DOI-matched same_as edge to cryptographically attested when its WoC endpoint holds a person-key. Of the 10,143 same_as edges (WoC author to an S2 or OpenAlex author), 10,021 (98.8%) join the trust universe, and Table 6 gives the tier of the WoC endpoint: 12.0% are person-key attested. Those 1,207 edges gain an attested_by provenance carrying the key fingerprint, and 966 distinct authors reach T3, a key-controlled WoC identity linked to a scholarly author. Only about a tenth of the science-to-software identity links are attested, consistent with signatures being a precision layer rather than a coverage layer, yet that tenth is a defensible calibration seed for the name-based edge growth. A sampled verification pass separates a claimed key from a proven one, and it runs on a sample because it is network-bound and outward-facing. For 398 person-keys drawn at random we fetched the public key from the Ubuntu keyserver and inspected its user-id: 78 (19.6%) were retrievable, and of those 39 (50%) carry a user-id email matching the signed author string, while 37 differ (key rotation, shared, or re-signed) and 2 expose no user-id. Low keyserver coverage limits full signature re-verification at scale, so presence and issuer-key-id consistency remain the corpus signal; the sampled pass calibrates it and bounds the residual claimed-butunproven rate at the T1-to-T2 boundary.

9

Availability

All artifacts are released as a single self-contained bundle; no World of Code account is required to obtain or use them (schemas, keys, and row counts are summarized in Table 7): the per-commit signature map c2sigFull.{0..127}.gz, the key-to-identity graph key2A.gz and its inverse A2key.gz, and the per-identity attestation-tier map A2trust.gz, each ;-separated, gzip-compressed, and LC_ALL=C sorted, together with a replication package that regenerates them from the WoC commit tables. Because the per-commit map is multi-gigabyte, the data artifacts are hosted as a Hugging Face dataset (which scales past the per-file limits of a code host and mints a citable DataCite DOI), with the replication code mirrored on GitHub and cross-linked from the dataset card. We will also offer the identical bundle to the World of Code maintainers, so existing WoC users could obtain it through the channels they already use, should the maintainers

Conclusion

Identity resolution over a global commit corpus rests on author strings that the commit itself does not verify. A cryptographic signature is the one part of a commit that does, and it is already sitting in the commit tables, unparsed, as a byproduct of how the corpus stores messages. Extracting it yields a per-commit signature map, a gated key-to-identity graph, and a per-identity attestation tier that tells any WoC-scale study which identities carry an anchor stronger than a typed name. The axis does not cover the corpus, and it is not meant to: it is a precision layer that calibrates the heuristic alias map against a cryptographic gold, flags impersonation on the strings most prone to it, and gives a science-to-software identity link a provenance a reviewer can check.

References [1] Sadika Amreen, Yuxia Zhang, Chris Bogart, Russell Zaretzki, and Audris Mockus. 2019. ALFAA: Active Learning Fingerprint Based Anti-Aliasing for correcting developer identity errors in version control systems. Empirical Software Engineering 25, 2 (2019), 1136–1167. doi:10.1007/s10664-019-09786-7 [2] Thomas Bock, Aakanksha Agarwal, Mitchell Atkisson, Audris Mockus, and Bogdan Vasilescu. 2025. Between Accuracy and Privacy: Rethinking Developer-Identity De-Aliasing in Git Repositories. Empirical Software Engineering (2025). Under submission. Tool: GitAuthority, https://github.com/bockthom/gitauthority. [3] Yuxing Ma, Chris Bogart, Sadika Amreen, Russell Zaretzki, and Audris Mockus. 2019. World of Code: An Infrastructure for Mining the Universe of Open Source VCS Data. In Proceedings of the 16th International Conference on Mining Software Repositories (MSR). 143–154. doi:10.1109/MSR.2019.00031 [4] Yuxing Ma, Tapajit Dey, Chris Bogart, Sadika Amreen, Marat Valiev, Adam Tutko, David Kennard, Russell Zaretzki, and Audris Mockus. 2021. World of Code: Enabling a Research Workflow for Mining and Analyzing the Universe of Open Source VCS Data. Empirical Software Engineering 26, 2 (2021), 22. doi:10.1007/s10664-020-09905-9 [5] Audris Mockus. 2026. Deforking the World of Code: A Project-Provenance Map that Recovers Cross-Forge Fork Families that Platform Graphs Cannot See. arXiv:2606.29550 [cs.SE] doi:10.48550/arXiv.2606.29550 Companion MSR Data and Tool Showcase; commit-based deforking map and GHArchive declared-fork validation. [6] Audris Mockus. 2026. Was It Never Collected, or Rewritten Away? A CommitProvenance Dataset Separating Ingestion Gaps from Upstream History Edits across the World of Code. Companion MSR Data and Tool Showcase; present/rewritten/never-ingested commit provenance from the GHArchive PushEvent stream. [7] Audris Mockus, Diomidis Spinellis, Zoe Kotti, and Gabriel John Dusing. 2020. A Complete Set of Related Git Repositories Identified via Community Detection Approaches Based on Shared Commits. In Proceedings of the 17th International Conference on Mining Software Repositories (MSR). 513–517. doi:10.1145/3379597. 3387499 [8] Zachary Newman, John Speed Meyers, and Santiago Torres-Arias. 2022. Sigstore: Software Signing for Everybody. In Proceedings of the 2022 ACM SIGSAC Conference on Computer and Communications Security (CCS). 2353–2367. doi:10.1145/3548606. 3560596

Conference’17, July 2017, Washington, DC, USA

Audris Mockus

Table 7: Released artifacts (WoC V2604). All files are ;-separated, gzip-compressed, and LC_ALL=C sorted on the first column; row counts are measured from the released files. The key column names each artifact’s join key. artifact

schema (columns)

key

sharding

c2sigFull.{0..127}.gz key2A.gz A2key.gz A2trust.gz

commit;sigtype (pgp/ssh/x509) keyhandle;kind;nAuthors;authors A;keyhandle;nCommits A;tier;evidence;nSignedCommits;nKeys

commit keyhandle A A

128 SHA-byte shards single file single file single file

rows 1,031,721,316 586,011 44,871,077 62,579,994

Record · ID 346438 · SHA-256 56562dbd4875fb21
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.