If some changes are added to the index and there are some changes that are not added to the index, how do I swap this two sets of changes?
It think that this is easiest to do with temporary commits. When you have staged and unstaged commits, you have the possibility of conflicts when trying to reorder the changes.
Make a commit with the staged changes, create a branch for later use:
git commit -m "Saved staged"
git branch save-staged
Make a commit with the unstaged changes (if the unstaged changes include new files you may need to explicitly git add
them first):
git commit -a -m "Unstaged changes"
Rebase the unstaged changes onto the original HEAD (may involve conflict resolution):
git rebase --onto HEAD^^ HEAD^
Rebase the staged changes onto the unstaged changes (may involve conflict resolution):
git reset --hard save-staged
git rebase --onto HEAD@{1} HEAD^
Finally, reset the index to the (originally) unstaged changes:
git reset HEAD^
And move the branch pointer back to the original HEAD:
git reset --soft HEAD^
Removed temporary branch:
git branch -D save-staged
For a lower-level solution, you can use a bit of plumbing to talk directly to the index:
INDEXTREE=`git write-tree`
git add -A
WORKTREE=`git write-tree`
git checkout $INDEXTREE -- .
git clean -f
git read-tree $WORKTREE
What that does is build a couple of temporary tree objects in the git store, one for the index and one for the working copy. Then, it restores the old index and checks it out into the working tree. Finally. it resets the index to the version representing the old working tree.
I haven't tested this, so I'm not sure how well it handles added files in either the index or the working tree.
The way with patches (it doesn't work for binary changes):
Save patches for both staged and unstaged states
git diff >> unstaged.patch
git diff --cached >> staged.patch
Apply originally unstaged changes
git reset --hard
git apply unstaged.patch
Stage this changes except the patch files
git add -A
git reset -- staged.patch unstaged.patch
Apply originally staged changes
git apply staged.patch
Remove patch files
rm staged.patch unstaged.patch
git stash
answer? –
Interglacial This is based on Walter Mundt's answer, but works better when new files are staged. This is intended to be used as a script, e.g. git-invert-index
#!/bin/sh
# first, go to the root of the git repo
pushd `git rev-parse --show-toplevel`
# write out a tree with only the stuff in staging
INDEXTREE=`git write-tree`
# now write out a tree with everything
git add -A
ALL=`git write-tree`
# get back to a clean state with no changes, staged or otherwise
git reset -q --hard
git clean -fd
# apply the changes that were originally staged, that we want to
# be unstaged
git checkout $INDEXTREE -- .
git reset
# apply the originally unstaged changes to the index
git diff-tree -p $INDEXTREE $ALL | git apply --index --reject
# return to the original folder
popd
pushd
/popd
anymore. From git help add
: "If no pathspec> is given when -A option is used, all files in the entire working tree are updated (old versions of Git used to limit the update to the current directory and its subdirectories)." –
Linter git add -A
will mix untracked files with the unstaged changes. (Running this with nothing staged leaves all untracked in the index at the end.) Perhaps it needs to be 3 steps (recording indices for add -u and add -A separately) in order to do what I'd expect in a swap, having no effect on untracked files in the end. –
Linter cd
to the root directory, I wasn't even aware a modification had been submitted for it to use pushd/popd. But I agree, git add -A
should work now, without needing to change the directory. The behavior with regards to untracked files matches my expectations, but feel free to take the script and modify it to suit your needs :) –
Unapproachable Charles Bailey has a more complete solution involving commits and managing potential conflict resolution.
I was originally trying to use only git stash
, except what I initially overlooked was that git stash
save will save both the index (staged changes) and the unstaged changes (which is inconvenient when you want to swap the index content with the unstaged changes).
So I modified to the following approach instead:
git commit
-m "temp commit" (create a commit for the current index)git stash
(stashing obviously what is not yet added to the index)git reset --soft HEAD^
(preserve the files previously committed)git stash
againgit stash pop stash@{1}
(applying not what you just stashed, but what you stashed before, i.e the initial changes that weren't yet added to the index)git add -A
git stash drop stash@{1}
to clean up the stash we previously applied ( stash@{0} still contains what was originally in the index)
At the end:
- what was not added to the index is now added.
- what was initially in the index ends up being stashed
git stash
implies a git reset --hard
so git reset --mixed
is a no-op and the second git stash
has nothing to do? –
Barramunda git stash --keep-index
. That way, the git reset --mixed
has something to do ;) –
Interglacial git drop stash@{1}
surely isn't correct and if the last step in your process is git add -A
then your not going to end up with any unstaged changes? I'm not convinced stash is the answer, it seems way to complex to get it right ;-) . –
Barramunda git stash save --keep-index
, and I guess I have to apply the first stash before dropping it in step 4. Anyway this way does not work for me, because if I have 2 stashes and try to apply one of them, both of them become applied unexplainable –
Airwaves git stash --keep-index && git checkout -- . && git stash && git stash pop stash@{1} && git stash pop
when you apply the second stash, if there are any auto-resolved conflicts stash uses the index to resolve the conflicts and the resolved file ends up staged anyway. –
Barramunda git stash
' version. –
Interglacial Starting with Git 2.35, it can be done in 3 steps:
git stash push -S
git add .
git stash pop
You can also wrap all of it in a command like so:
alias swap='git stash push -S && git add . && git stash pop'
Now you can simply execute swap
on the command line.
use `git rebase -i the best solution.
Alternative (too long):
Note the name of your current branch as:
<name-of-your-branch>
git checkout -b temp-unstaged
git commit -m "staged"
git branch temp-staged
git add .
git commit -m "unstaged"
git rebase --onto HEAD~2 HEAD~1
git checkout temp-staged
git rebase temp-unstaged
git reset HEAD~1
git reset --soft HEAD~1
git checkout <name-of-your-branch>
git branch -D temp-staged
git branch -D temp-unstaged
At last one can verify that the staged and untaged changes are swapped.
© 2022 - 2024 — McMap. All rights reserved.