<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vesmot</title>
    <description>The latest articles on DEV Community by Vesmot (@vesmot_dev).</description>
    <link>https://dev.to/vesmot_dev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4021818%2Ffa31be55-0a9b-4b36-977b-d236727314d9.png</url>
      <title>DEV Community: Vesmot</title>
      <link>https://dev.to/vesmot_dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vesmot_dev"/>
    <language>en</language>
    <item>
      <title>Why Your Git History Isn't Enough as Proof</title>
      <dc:creator>Vesmot</dc:creator>
      <pubDate>Sun, 19 Jul 2026 16:40:19 +0000</pubDate>
      <link>https://dev.to/vesmot_dev/why-your-git-history-isnt-enough-as-proof-58m7</link>
      <guid>https://dev.to/vesmot_dev/why-your-git-history-isnt-enough-as-proof-58m7</guid>
      <description>&lt;p&gt;Every developer has said it at least once: "check the git log — it's all there." Commit date, author, diff — it looks like an irrefutable timeline of who wrote what and when.&lt;/p&gt;

&lt;p&gt;It isn't. And if you ever need to prove authorship or priority of code — in a dispute with a former co-founder, a contested termination involving IP, a licensing or patent dispute — you'll find that git log means far less than it appears to.&lt;/p&gt;

&lt;p&gt;Commit dates are just a field you can rewrite&lt;/p&gt;

&lt;p&gt;&lt;code&gt;git commit --date&lt;/code&gt; lets you set any date when creating a commit. &lt;code&gt;git rebase -i&lt;/code&gt;, combined with manual editing or &lt;code&gt;--committer-date-is-author-date&lt;/code&gt;, rewrites history entirely. &lt;code&gt;git filter-branch&lt;/code&gt; and its modern replacement &lt;code&gt;git filter-repo&lt;/code&gt; change dates and authorship across batches of commits in seconds.&lt;/p&gt;

&lt;p&gt;Nothing in git itself prevents you from creating a commit today with a date stamped "three months ago." Git is a version control system, not a proof-of-time system. It was never designed for this — and that's fine, as long as you understand what it actually guarantees.&lt;/p&gt;

&lt;p&gt;Force-push erases history without a trace&lt;/p&gt;

&lt;p&gt;If a repository isn't protected by explicit branch protection rules, &lt;code&gt;git push --force&lt;/code&gt; overwrites the remote history completely. What was in &lt;code&gt;main&lt;/code&gt; yesterday may simply not exist today — no warning, no record of the fact anywhere else.&lt;/p&gt;

&lt;p&gt;GitHub keeps a reflog for a while, but that's not a guarantee — reflogs get cleaned up, forks may be out of sync, and if a dispute ends up in court, "it might still be somewhere in GitHub's logs" isn't something you want to rely on.&lt;/p&gt;

&lt;p&gt;Anyone with write access can rewrite history after the fact&lt;/p&gt;

&lt;p&gt;This is the key issue in priority disputes: if two people have access to the same repository — co-founders, a team — both of them physically have the ability to rewrite the shared history. Git doesn't verify "who came up with this first"; it only verifies "what's currently in the database," and that database is mutable by anyone with push access.&lt;/p&gt;

&lt;p&gt;When the dispute is real — not hypothetical — the question "whose git log is more trustworthy" becomes part of the dispute itself, not a way to resolve it.&lt;/p&gt;

&lt;p&gt;GPG-signed commits solve only part of the problem&lt;/p&gt;

&lt;p&gt;Signed commits (&lt;code&gt;git commit -S&lt;/code&gt;) genuinely prove that a &lt;em&gt;specific person&lt;/em&gt; with a specific key confirmed &lt;em&gt;specific content&lt;/em&gt;. That's valuable — but it doesn't solve the time question. A signature doesn't carry an independently verified timestamp; it confirms &lt;em&gt;what&lt;/em&gt;, not &lt;em&gt;when&lt;/em&gt; it was actually created, if the commit date itself — the very field you can rewrite — was set before signing.&lt;/p&gt;

&lt;p&gt;What you actually need to prove priority&lt;/p&gt;

&lt;p&gt;To make date and content genuinely unfalsifiable, you need a timestamp that &lt;strong&gt;neither party to the dispute controls&lt;/strong&gt; — an independent third party that recorded a hash of the content at a specific moment, before there was any reason to falsify it.&lt;/p&gt;

&lt;p&gt;This is exactly what notaries used to do with paper documents, and what an RFC 3161 Time-Stamping Authority (TSA) does for digital data — an independent, cryptographically verified timestamp over a content hash, issued by a party with no stake in the outcome of your dispute.&lt;/p&gt;

&lt;p&gt;In practice, this means keeping an independent record — alongside your git repository, not instead of it — of key milestones: releases, critical commits, the state of your codebase on dates that matter, anchored to an external, immutable source of truth.&lt;/p&gt;

&lt;p&gt;Not paranoia, just basic hygiene&lt;/p&gt;

&lt;p&gt;Most repositories will never need this — if a dispute never arises, git log does its normal job perfectly well. But for developers working in startups with multiple co-founders, freelancers handing off code to clients, teams protecting their own algorithms as trade secrets — the cost of one unresolvable authorship dispute is usually far higher than the few minutes it takes to independently anchor an important commit ahead of time.&lt;/p&gt;

&lt;p&gt;It's cheaper to record it once, before you need it, than to try to prove anything after the fact with tools that were never built for that purpose.&lt;/p&gt;




&lt;p&gt;Evident Ledger — independent cryptographic file anchoring with an external RFC 3161 timestamp. Local utility, open verification model, free base tier.&lt;/p&gt;

</description>
      <category>git</category>
      <category>programming</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Evident: Proving Digital Ownership Without Revealing Your Content</title>
      <dc:creator>Vesmot</dc:creator>
      <pubDate>Wed, 08 Jul 2026 20:31:10 +0000</pubDate>
      <link>https://dev.to/vesmot_dev/evident-proving-digital-ownership-without-revealing-your-content-286h</link>
      <guid>https://dev.to/vesmot_dev/evident-proving-digital-ownership-without-revealing-your-content-286h</guid>
      <description>&lt;p&gt;In the era of AI-generated content, copyright disputes, and data leaks, proving that a specific file existed at a specific time is a significant challenge. Traditional methods often require uploading your files to third-party servers, compromising your privacy and security.We are changing that. Introducing Evident, a privacy-first utility designed to provide legally binding proof of existence while keeping your data strictly on your device.The Core Philosophy: "Zero-Knowledge Proof of Existence"At Evident, we believe your files belong to you. Our architecture is built on a simple premise: the server never touches your files.Instead of uploading documents, the Evident utility computes a cryptographic hash locally on your machine. This hash—a unique "digital fingerprint"—is the only thing sent to our infrastructure.How It Works:Local Hash Calculation: You select a file and a project. The utility generates a hash locally.Server Ledger &amp;amp; TSA: We receive only the hash and metadata. We then record the event in a secure ledger, attaching a Time Stamping Authority (TSA) signature.Local Audit Trail: Your device stores the proof package, the ledger link, and the TSA data.Verification: Our local and public verifiers generate professional PDF reports that serve as verifiable evidence of existence at a specific point in time.Scalable Trust: From Base to EnterpriseWe provide a tiered model to match your security and legal requirements:TierFocusBest ForBaseHash + Ledger + Free TSAPersonal projects &amp;amp; basic tracking.LegalJurisdictional-Compliant TSALegal disputes and intellectual property.EnterpriseEncrypted Audit StorageCorporate data compliance.IdentityUser-Owned Keys &amp;amp; Digital SignaturesHigh-security identity verification.(Note: Audit recovery is available as a paid service tier.)Why This Matters for the Global MarketWhether you are a developer protecting your code, an artist securing your digital art, or a lawyer managing client documents, Evident provides a neutral, blockchain-based timestamping layer that is independent and transparent.Our public verifier allows anyone to input a hash and verify the project’s history, providing auditability without ever exposing the underlying file content.Get StartedWe are open-source and committed to transparency. You can find our release, source code, and documentation on &lt;a href="https://github.com/vesmot74-code/evident-ledger" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.We invite developers, privacy advocates, and legal-tech enthusiasts to test Evident, contribute to the repo, and help us build a standard for decentralized data integrity.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>privacy</category>
      <category>opensource</category>
      <category>security</category>
    </item>
  </channel>
</rss>
