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 356755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:08:29+00:00 2026-05-12T12:08:29+00:00

i have commits that are in a remote repository (origin/master) which i want to

  • 0

i have commits that are in a remote repository (origin/master) which i want to put in a branch created from that repository (origin/remote_branch).

when i checkout to that remote branch

git checkout -b mybranch origin/remote_branch

then cherry-picked the commits that i made

git cherry-pick 9df63616b0428cf6edc4261adb533a1ac516b9a0

git says everything-up-to-date when i try to push.

git push

is there anything i’m doing wrong?

  • 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-12T12:08:30+00:00Added an answer on May 12, 2026 at 12:08 pm

    Depending on your version of Git, it may be trying to push branches with matching names, i.e., master to origin/master and remote_branch to origin/remote_branch. If your origin repository doesn’t have a branch named mybranch then it thinks there’s nothing to update.

    To override this default, you can explicitly tell git which branch to use as the source (mybranch) and which to use as the destination on the remote repository (remote_branch):

    git push origin mybranch:remote_branch
    

    There’s a config option to tell git to push to remote tracking branches by default:

    git config --global push.default tracking
    

    I find this more intuitive and I think it’s the behavior you’re looking for. Checkout the push.default option in the git config man page. Also checkout the Examples section in the git push man page to see how to override the default behavior.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given that two branches have diverged and a specific commit from one branch (and
After the last merge to the master branch of my Git repository I have
I have a remote tracking branch tracked locally in my local repository using 'git
I have two branches: master and dev I want to create a "feature branch"
git: Your branch is Ahead by X commits Git branch is ahead of origin/master
I have a remote bare repository with two branches 'master' and 'testing', where HEAD
I have a Git repository on my local machine that I cloned from my
Let's say I have cloned repository, created new branch Topic1, made changes, commited them
I read everywhere that rewriting history of commits that have been published is bad
In git, i have 2 commit and a branch merge that have been rebased

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.