惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园_首页
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
月光博客
月光博客
小众软件
小众软件
S
SegmentFault 最新的问题
量子位
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I shipped my first GitHub release (and what I learned)
Xavi · 2026-05-18 · via DEV Community

Xavi

My journey with Git

Software development and I have never really been the best of friends — which is exactly why I avoided going too deep into it for a long time. But as I work towards becoming a junior IT specialist, I’ve been forcing myself to properly learn Git instead of just memorising enough commands to survive.

Following the roadmap.sh Git & GitHub roadmap, I went from knowing the basics to actually understanding releases — not just pushing to main and hoping for the best.

Today I shipped my first ever tagged, released, and wikied project. Here’s what that looked like.


Wordle.py

Meet the project: a terminal clone of Wordle written in Python.

Guess the hidden 5-letter word in 6 tries, get symbol feedback on each guess, and try not to lose your mind.

github.com/xaviermontane/Wordle

I had two goals with this project.

First, sharpen my Python and CLI skills on something more interesting than another to-do app.

Second — and I’ll let you in on a secret — I eventually want to reverse engineer a Wordle cracker from the game’s core logic. But that’s a story for another post.

For now it’s terminal-only, though I’d love to eventually port it into something more visual. Today’s goal was simpler:

Ship it properly.


What I didn’t know before today

Turns out there’s a lot more to releases than just pushing code to GitHub and calling it a day.

Here’s what genuinely surprised me:

  • Tags are not branches — they’re permanent references to a specific commit
  • There are two types of tags:
    • lightweight tags (basically just a named pointer)
    • annotated tags (full Git objects containing metadata, author, date, and messages)
  • GitHub Releases are built on top of tags, not the other way around
  • Release notes and READMEs serve completely different purposes:
    • README = evergreen project documentation
    • Release notes = what changed in this version specifically

That last point especially changed how I think about documenting projects.


The process I followed

1. Create a meaningful annotated tag

git tag -a v1.0.0 -m "Terminal Wordle in Python — 6-guess game with colour-coded feedback and custom word list support"

Enter fullscreen mode Exit fullscreen mode

I quickly realised "stable release" is a terrible tag message.

Tag annotations show up in:

  • git show
  • git log
  • GitHub’s tag UI

So the message should actually explain what shipped.


2. Push the tag explicitly

git push origin v1.0.0

Enter fullscreen mode Exit fullscreen mode

This caught me off guard the first time.

Tags don’t automatically push with a normal git push. You either:

  • push them individually
  • or use git push --tags

Tiny detail, but one that confused me immediately.


3. Build the release page properly

Instead of treating the release like an afterthought, I wrote:

  • actual release notes
  • a summary of what shipped
  • a “What’s Next” section

I wanted someone landing on the repo to immediately understand:

  1. what the project does
  2. what changed
  3. whether the project is still active

4. Create the wiki

I also built a small wiki containing:

  • Home
  • How to Play
  • Custom Word Lists
  • Changelog
  • Roadmap

Keeping longer-form documentation inside the wiki made the repo itself feel way cleaner.


What I’d do differently next time

A few things became obvious almost immediately:

  • Start at v0.1.0, not v1.0.0

    • v1.0.0 implies a level of stability I probably wasn’t ready to promise on a 9-commit repo
  • Use conventional commits from day one

    • feat:
    • fix:
    • chore:
    • etc.

This becomes especially useful once GitHub starts auto-generating release notes.

  • Set up CI before the first release
    • even a tiny “does this run?” workflow is infinitely better than nothing

Try it yourself

If you’d like to try the project, feel free to clone it and mess around with it.

Any support is massively appreciated:

  • stars
  • forks
  • issues
  • feedback
  • all of it ⭐

What’s next

  • v1.0.1

    • fixing a bug I spotted in my own word list (STRIN is apparently not a real word)
  • v1.1.0

    • ANSI colour output so feedback becomes green/yellow/grey instead of symbols

Full roadmap:
github.com/xaviermontane/Wordle/wiki


Resources that helped me


Thank you!

If you made it this far, genuinely thank you.

This is one of my first technical posts, and honestly just writing it helped me consolidate everything I learned today. If it helps even one person understand Git releases a little better, that’s already a win to me.

If you’re also learning Git from scratch:
you’re not alone — we’re all figuring it out one release at a time.

f40 ── .✦