Releases and Tags
A tag marks a commit as significant — typically a version like v1.2.0. A release builds on a tag by adding human-readable notes and optional file attachments so users can browse and download specific versions from the web UI.
Create a Tag
Section titled “Create a Tag”You can create a tag from the UI or from your local clone.
From the UI:
- Open your repository and select Releases, then Tags.
- Select Create Tag.
- Enter a tag name (for example,
v1.2.0), choose the target branch or commit, and select Create Tag.
From the command line:
git tag v1.2.0git push origin v1.2.0To tag a specific past commit, pass its commit ID instead of relying on HEAD:
git tag v1.2.0 abc1234git push origin v1.2.0Publish a Release
Section titled “Publish a Release”- Open your repository and select Releases.
- Select New Release.
- In the Tag Name field, choose an existing tag or type a new name to create one at the current default branch tip.
- Enter a Release Title and write release notes in the Markdown body — changelogs, upgrade instructions, and known issues all belong here.
- Select This is a pre-release if the version isn’t ready for general use, or Save Draft to finish it later without publishing.
- Select Publish Release when it’s ready.
Attach Files
Section titled “Attach Files”Uploaded files appear on the release page as named download links alongside the auto-generated source archive.
- On the new or edit release form, go to the Attach Files section.
- Drag files onto the upload area, or select it to browse — built binaries, compressed archives, checksums, and signatures are all common choices.
- Repeat for each file, then publish or update the release.
Keep individual files reasonable in size so downloads stay fast for your team.
View and Download Releases
Section titled “View and Download Releases”- Select Releases to see the full list, newest first.
- The latest non-prerelease is highlighted with a Latest badge.
- Each entry shows the tag name, release title, notes, and links to:
- Source code — auto-generated
zipandtar.gzarchives of the tagged commit. - Assets — any files you attached when publishing the release.
- Source code — auto-generated
- Select a file link to download it directly, or copy the URL to share it.
To compare two releases, open their tag names as a compare URL:
https://git.example.plaidcloud.com/you/my-repo/compare/v1.1.0...v1.2.0