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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:02:16+00:00 2026-05-11T21:02:16+00:00

While coding I added print statements into some files to keep track of what

  • 0

While coding I added print statements into some files to keep track of what was going on.

When I am done, is it possible to revert changes in some files, but commit the file I actually worked on?

Say I added print in file A, but I modified file B. B is what I want to commit and A, I want to be set back to its old state.

  • 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-11T21:02:16+00:00Added an answer on May 11, 2026 at 9:02 pm

    There are three basic ways to do this depending on what you have done with the changes to the file A. If you have not yet added the changes to the index or committed them, then you just want to use the checkout command – this will change the state of the working copy to match the repository:

    git checkout A
    

    If you added it to the index already, use reset:

    git reset A
    

    If you had committed it, then you use the revert command:

    # the -n means, do not commit the revert yet
    git revert -n <sha1>
    # now make sure we are just going to commit the revert to A
    git reset B
    git commit
    

    If on the other hand, you had committed it, but the commit involved rather a lot of files that you do not also want to revert, then the above method might involve a lot of “reset B” commands. In this case, you might like to use this method:

    # revert, but do not commit yet
    git revert -n <sha1>
    # clean all the changes from the index
    git reset
    # now just add A
    git add A
    git commit
    

    Another method again, requires the use of the rebase -i command. This one can be useful if you have more than one commit to edit:

    # use rebase -i to cherry pick the commit you want to edit
    # specify the sha1 of the commit before the one you want to edit
    # you get an editor with a file and a bunch of lines starting with "pick"
    # change the one(s) you want to edit to "edit" and then save the file
    git rebase -i <sha1>
    # now you enter a loop, for each commit you set as "edit", you get to basically redo that commit from scratch
    # assume we just picked the one commit with the erroneous A commit
    git reset A
    git commit --amend
    # go back to the start of the loop
    git rebase --continue
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Your question is hard to read but I'll give it… May 12, 2026 at 12:16 am
  • Editorial Team
    Editorial Team added an answer Figured it out. Turns out Internet Explorer chokes if you… May 12, 2026 at 12:16 am
  • Editorial Team
    Editorial Team added an answer In Excel 2007 turn your data matrices into tables. This… May 12, 2026 at 12:16 am

Related Questions

Hi I'm pretty new to Stack Overflow so I hope that I'm doing this
every time i code a gui (in my case with GWT, never touched gui
I have a DirectShow graph with the SampleGrabber filter doing some processing. The processing
I have a few radiobuttons in a jsp page. I run a javascript method

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.