Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Implements a new sc tag CLI group to manage git tags across either a single git repo or a repo-style multi-project workspace, wiring the CLI into SCBranching and adding the underlying tag command implementations.
Changes:
- Adds
sc tagsubcommands:list,show,create,rm,push,check. - Introduces
Tag*command implementations to operate on manifest + projects (repo mode) or the current repo (git mode). - Renames CLI calls from
SCBranching.sc_*toSCBranching.*forclean/status/reset.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
| src/sc/branching_cli.py | Adds tag command group and subcommands; updates clean/status/reset to new method names. |
| src/sc/branching/commands/tag.py | New implementations for tag list/show/create/rm/push/check across repo or git project types. |
| src/sc/branching/branching.py | Wires new tag commands into SCBranching and exposes static methods for CLI use. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
TB-1993
approved these changes
Feb 27, 2026
TB-1993
left a comment
There was a problem hiding this comment.
I think this looks good. I think we should get a future upgrade ticket for copilots suggestions so we can capture the errors and suggest to users how to fix them. But for now this is good. Ship it!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #32
Implement sc tag:
tag check
tag create
tag list
tag push
tag rm
tag show