How do you move a commit to the staging area in git?

102,272

Solution 1

git reset --soft HEAD^

This will reset your index to HEAD^ (the previous commit) but leave your changes in the staging area.

There are some handy diagrams in the git-reset docs

If you are on Windows you might need to use this format:

git reset --soft HEAD~1

Solution 2

A Simple Way

  1. Committed files to Staging Area

    git reset --soft HEAD^1

  2. Staging to UnStage :(use "git reset HEAD ..." to unstage)

    git reset HEAD git commands.txt or git reset HEAD *ds.txt

here, *--> all files end with ds.txt to unstage.

Refer the below pic for clarity:

enter image description here

Solution 3

To move a commit back to the staging area depends on your last commit. If your last commit was the first(or initial) commit of the repo, then you need to execute

git update-ref -d HEAD

If your last commit is not the first(or initial) commit, then execute

git reset HEAD~
Share:
102,272

Related videos on Youtube

Jonathan M Davis
Author by

Jonathan M Davis

Updated on March 30, 2021

Comments

  • Jonathan M Davis
    Jonathan M Davis about 3 years

    If you want to move a commit to the staging area - that is uncommit it and move all of the changes which were in it into the staging area (effectively putting the branch in the state that it would have been in prior to the commit) - how do you do it? Or is it something that you can't do?

    The closest that I know how to do is to copy all of the files that were changed in the commit to somewhere else, reset the branch to the commit before the commit that you're trying to move into the staging area, move all of the copied files back into the repository, and then add them to the staging area. It works, but it's not exactly a nice solution. What I'd like to be able to do is just undo the commit and move its changing into the staging area. Can it be done? And if so, how?

  • ahains
    ahains about 9 years
    To clarify, tilde and carot mean different things in git versions. HEAD~1 always follows the first parent of a commit, which might not be what you want if it is a merge commit that has multiple parents. Regarding the Windows cmd shell, you just need to escape the carot with another carot e.g. "git reset --soft HEAD^^" to go back to "HEAD^". This is purely an artifact of the Windows cmd shell, so you shouldn't have to do that if you use a git GUI on Windows. Tilde and carot are explained at schacon.github.io/git/git-rev-parse#_specifying_revisions
  • Neuron
    Neuron about 6 years
    I added a link for the "handy diagrams". Could you quickly check if it leads to the section you meant? Thanks
  • Andrei Savin
    Andrei Savin over 3 years
    Note that for for Mac OS (zsh), you will need to escape the caret: git reset --soft HEAD\^
  • tourniquet_grab
    tourniquet_grab about 3 years
    This covers a special case where the commit that you are trying to move to stage is the first commit.
  • fall
    fall about 3 years
    lets say first commit is commit1 and last commit is commit4, is it possible to move only commit 2 to staging area?
  • Abizern
    Abizern about 3 years
    @fall in a manner of speaking it is possible, through a combination of moving commit 2 to come after commit 4 by using git rebase -i and then git reset --soft head~1
  • Shannon
    Shannon almost 3 years
    I think you mean HEAD~1?
  • Sumit Wadhwa
    Sumit Wadhwa about 2 years
    How to do it for just one file from the last commit?