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

  • Home
  • SEARCH
  • 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 6189021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:20:13+00:00 2026-05-24T02:20:13+00:00

So I forked a project, and made a few changes and pushed those to

  • 0

So I forked a project, and made a few changes and pushed those to origin/master. I didn’t intend to send these changes back to upstream. All was fine and good until now, but now I have some changes I do want to push upstream.

Can I rebase back to upstream in a different branch, and commit to that branch? Can I commit these changes from my branch? Have I horribly mangled my repo?

  • 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-24T02:20:15+00:00Added an answer on May 24, 2026 at 2:20 am

    No, no mangling. Just branch from upstream/master, make your commits there, and then you can push (or pull-request) those commits, which fit neatly onto upstream/master.

    If you have A—B—C, where upstream/master is at A and master is at C, meaning B and C are commits you don’t want to send upstream, then:

    git checkout -b to-send-upstream A
    # work, work, work
    # commits
    git log A..HEAD # this will be the commits to send upstream
    

    If you have commits you’re not going to send back on master, it might be simpler to keep track of things if you move those into a different branch and keep your master in sync with upstream/master:

    git branch my-stuff-not-sent-upstream
    git reset --hard A # will wipe out local changes!
    git push origin master -f # can lose history if a shared remote!
    git push origin my-stuff-not-sent-upstream
    

    will effectively replace “master” with “my-stuff-not-sent-upstream” and set master and origin/master back to the same commit as upstream/master.

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

Sidebar

Related Questions

I forked a project a while back and made some changes. Some of these
I forked a project on github, made some changes, so far so good. In
I forked some project and cloned it locally. Changed files, commited changes, pushed changes
Someone forked a Github project of mine and made some changes. How can I
I forked a project, made some changes, and got a pull request accepted. But
I have a project I forked on github to my repository. I made changes
I forked a project on GitHub, pushed some changes, and opened a pull request.
I forked someone elses repository on Bitbucket and made some changes (and pushed them
I have forked the git repository of a project on Github and made my
I forked a project on github. I made commit 1,2,3,4 & 5 on my

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.