Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4004614
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:17:41+00:00 2026-05-20T08:17:41+00:00

I need to fetch everything from a few different, distinct repositories (all remote branches

  • 0

I need to fetch everything from a few different, distinct repositories (all remote branches and all changes to those branches). I tried git pull --all but for some reason, I get the following message:

There are no candidates for merging among the refs that you just fetched.
Generally this means that you provided a wildcard refspec which had no
matches on the remote end.

So how would I go about ensuring that I get all the changes from a repository (without knowing what branches are on the other end, if possible)?

All help is appreciated and thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T08:17:41+00:00Added an answer on May 20, 2026 at 8:17 am

    Generally speaking — that’s a really, really bad idea. Don’t do that. “All remote branches” will often include work-in-progress code, abandoned code, conflicting implementations of the same feature, etc. Trying to merge them all into your local tree is a recipe for disaster.

    Now, if you really wanted to do the very silly thing you suggested, you could do it something like thus:

    git fetch remote_source
    git merge $(git branch -r | grep remote_source)
    

    Now, if all you really want to do is have a local copy of all remote changes, without trying to merge them into your tree, then you don’t need to do a pull or merge at all; git fetch remote_source does it all for you. Sure, it doesn’t create local branches mapped to the remotes — but it does pull down the remote branches, and you can create local ones when and as you need them, with no further communication with the remote source required.


    Given further problem description in the comments, it sounds like what you really want is to push all branches from your old remote to a new remote, not to merge them into a single tree. To do this, you’d probably want something like the following:

    args=()
    for remote_branch in $(git branch -r | grep OLD_REMOTE/); do
      branch_name=${remote_branch#*/}
      args+=( "${remote_branch}:${branch_name}" )
    done
    git push NEW_REMOTE "${args[@]}"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im using vb.net and I need to fetch data from two different tables and
I need to fetch all email id's of contacts which is present in contact
I am creating a moderating application in which i need to fetch all the
I'm writing a simple web crawler in Ruby and I need to fetch all
The goal I need to achieve is to get all records from a cursor
I am trying to fetch contents of table from a wepage. I jsut need
i need to fetch a url with javascript/jquery and not php. i've read that
I need to fetch only first record (because I need last date) of resultset,
I often need to fetch tgz files, decompress them, and then delete the tgz.
Here's what I need to fetch: - posts that have comments - number of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.