Implementation:Wandb Weave Git Push Release
Appearance
| Knowledge Sources | |
|---|---|
| Domains | Release_Engineering, Git |
| Last Updated | 2026-02-14 00:00 GMT |
Overview
External tool documentation for pushing release commits and tags to the remote repository.
Description
Two git commands push the release artifacts to the remote: git push for the commits and git push --tags for the version tag. This is a manual or CI step, not part of the automated scripts.
Usage
Run these commands after the bump script completes successfully.
Code Reference
Source Location
- Repository: wandb/weave
- File: N/A (manual/CI command)
CLI Usage
git push && git push --tags
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| local_commits | git | Yes | Release bump + dev bump commits |
| local_tags | git | Yes | vX.Y.Z tag |
Outputs
| Name | Type | Description |
|---|---|---|
| remote | git | Updated remote with 2 commits and 1 tag |
Usage Examples
Push Release
git push && git push --tags
# Pushes release commit, dev commit, and vX.Y.Z tag
Related Pages
Implements Principle
Page Connections
Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment