Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gitopia/git-remote-gitopia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: gitopia/git-remote-gitopia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: storage-migration
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on Sep 1, 2025

  1. Configuration menu
    Copy the full SHA
    ee04150 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2025

  1. Optimize fetch to use single git command for all refs

    - Batch all refs into one git fetch command instead of separate commands per ref
    - Apply --force globally when any ref needs it or remote.Force is set
    - Reduces git subprocess calls from N to 1, improving performance
    - Maintains same functionality while eliminating inefficient loop
    faza committed Sep 2, 2025
    Configuration menu
    Copy the full SHA
    dd38977 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2025

  1. Configuration menu
    Copy the full SHA
    faed7fa View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2025

  1. fix: validate default branch exists before setting HEAD in List method

    The List method was blindly setting HEAD to point to the configured default
    branch without verifying the branch actually exists. This caused "couldn't
    find remote ref" errors when cloning repositories with misconfigured default
    branches (e.g., pointing to non-existent "master" branch).
    
    Changes:
    - Add validation to check if configured default branch exists
    - Implement fallback logic: prefer "main" branch, then first available branch
    - Add warning logs when falling back to different branch
    - Handle edge case of repositories with no branches
    - Prevent fatal clone errors due to invalid HEAD references
    
    Fixes scenarios where repository default branch configuration points to
    non-existent branches, improving clone reliability and user experience.
    faza committed Sep 7, 2025
    Configuration menu
    Copy the full SHA
    887ea1d View commit details
    Browse the repository at this point in the history
Loading