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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:40:33+00:00 2026-05-23T17:40:33+00:00

I have a dev git branch. I made some code changes locally. I haven’t

  • 0

I have a “dev” git branch. I made some code changes locally. I haven’t committed them to the remote “dev” branch. Now that I’m halfway through the changes, I don’t want to commit the local changes to same remote branch. I’d like to create a new branch called “over_here” and commit the changes there.

How can this be accomplished?

  • 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-23T17:40:34+00:00Added an answer on May 23, 2026 at 5:40 pm

    Assuming that your remote has standard git name origin:

    git checkout -b over_here
    git push origin over_here
    

    Depending on if you need to reset your dev branch back to origin/dev state you could also execute

    git checkout dev
    git reset --hard origin/dev
    

    UPDATE: Above was written assuming you have some changes commited. As you told in comments that you didn’t commit anything to local dev branch – you need to checkout new branch right now:

    git checkout -b over_here
    

    Now your changes still here, but you’re on the newly created branch. So you’re ready to commit your local changes:

    git commit -m 'my local changes to over_here branch'
    

    Now these changes are in your local repo only. If you want to push them into remote repository (probably github) – you should execute:

    git push origin over_here
    

    It will create new branch in the remote repository and commit your changes there.

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

Sidebar

Related Questions

I have a dev, that will get around our code coverage by writing tests
I have a dev branch that hasn't been touched for a while. I merged
We have an SVN setup with stable trunk and unstable development branch. Dev work
I was trying to merge a dev branch into master. git checkout master git
In a typical enterprise scenario with in-house development, you might have dev, staging, and
I have three custom build configurations { Dev, Qs, Prd }. So, I have
I have a small app/site on a dev server with a data table in
I have a web-service that I will be deploying to dev, staging and production.
I have created an SSIS package and it works great on my dev machine.
I have a website that is deployed between 3 different environments - Dev, Stage,

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.