Conversation
When pushing to a newly created empty GitHub repo, the push preview incorrectly showed "0 commits" because origin/branch doesn't exist yet. Changes: - Add is_first_push flag to push-preview API response - Update PushModal to show "Creating origin/branch with X commits" - Add info box explaining first push scenario The core library fix (get_sync_status detecting missing remote branch) is in the comfygit-core package. Context: ctx://46f65107e266912e/c582c011-b93d-451a-94b2-8bb32f70fc1b
RunPod doesn't currently support Community cloud type or Spot pricing through our integration. Disable these options in the UI while keeping them visible so users know they exist for future support. Changes: - Add disabled attribute to Community and Spot radio inputs - Add .radio-option.disabled CSS class with 50% opacity and not-allowed cursor - Options remain visible but unselectable Context: ctx://46f65107e266912e/c582c011-b93d-451a-94b2-8bb32f70fc1b
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Changes
Fix: First push to empty remote detection
When pushing to a newly created empty GitHub repository, the push preview incorrectly showed "0 commits to push" because
origin/branchdoesn't exist yet and the git comparison fails.Changes:
is_first_pushflag to push-preview API response (derived from newremote_branch_existsflag in core library)Note: The core library fix (
get_sync_statusdetecting missing remote branch and counting local commits) is in the comfygit-core package.Fix: Disable unsupported RunPod options
RunPod doesn't currently support Community cloud type or Spot pricing through our integration.
Changes:
Test plan