Tagged Questions
The stash tag has no wiki summary.
40
votes
8answers
10k views
Git stash: “Cannot apply to a dirty working tree, please stage your changes”
I am trying to apply changes I stashed earlier with git stash pop and get the message:
Cannot apply to a dirty working tree, please stage your changes
Any suggestion on how to deal with that?
22
votes
2answers
3k views
Git: Create a branch from unstagged/uncommited changes on master
Context: I'm working on master adding a simple feature. After a few minutes I realize it was not so simple and it should have been better to work into a new branch.
This always happens to me and I ...
7
votes
3answers
102 views
In Perl, is there any difference between direct glob aliasing and aliasing via the stash?
In Perl, is there ever any difference between the following two constructs:
*main::foo = *main::bar
and
$main::{foo} = $main::{bar}
They appear to have the same function (aliasing all of the ...
7
votes
1answer
143 views
In Perl, is there any way to tie a stash?
Similar to the way AUTOLOAD can be used to define subroutines on demand, I am wondering if there is a way to tie a package's stash so that I can intercept access to variables in that package.
I've ...
7
votes
3answers
939 views
How to emulate 'git stash' in fossil, bzr?
Is it possible to emulate the behavior of 'git stash' when using fossil/bzr?
Basically I'm interested in handling the following workflow:
at some point the source code tree has state X, it is ...
6
votes
2answers
358 views
Is it possible to preview stash appplication in git?
I often put work away for later, then other stuff comes along, and a few weeks later, I want to inspect the stash, and find out what changes it would make if I applied it to working tree in its ...
5
votes
1answer
408 views
How to resolve git stash conflict without commit?
As asked in this question, I also want to know how to resolve a conflicting git stash pop without adding all modifications to a commit (just like "git stash pop" without a conflict does).
My current ...
4
votes
1answer
175 views
Git Stash & Worktree Woes
I'm having a helluva time getting git to cooperate with my user-defined worktree that exists outside the folder that contains my .git directory.
Basically the setup is like this: I have two ...
3
votes
3answers
548 views
Strange git case - git stash followed by git stash apply lost uncommitted data?
I have a file, let's say file.txt I have done git mv file.txt to file1.txt, then I created a new file called file.txt and worked on it. Unfortunately I didn't add that file to git yet. Anyway the ...
3
votes
2answers
838 views
GIT: Do I need to commit my branch before checking out another branch, what about Stash?
I'm new to Git and a bit confused. I have Master branch and have created a second feature branch.
If I make changes in my feature branch and then switch to Master, will my changes be lost if I ...
2
votes
2answers
68 views
git stash and pop shows file no longer marked as moved?
git mv file1 file2
git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# renamed: file1 -> file2
git stash
git stash pop
# On ...
2
votes
1answer
135 views
Git diff against a stash
How can I see the changes un-stashing will make to the current working tree? I would like to know what changes will be made before applying them!
2
votes
2answers
205 views
git stash pop: avoiding stash drop and un-staging steps
Sometimes when running git stash pop there are merge conflicts that need to be resolved. This happens a lot when I have to stash/pop before/after switching branches.
The conflicts are no problem to ...
2
votes
1answer
180 views
Git alias with two commands (stash pop + merge) executes only the first command. Why? How to execute also the merge?
I set up a git alias like this:
git config --global alias.popmerge '!git stash pop && git merge master'
Then I call it, like this:
git popmerge
The "git stash pop" is executed, but the ...
1
vote
1answer
53 views
Can git do a diff of the working copy with stash
I'd like to know if there is any differences with the stashed changes and my current working copy.
The purpose is to evaluate whether I should drop the stash or apply the stash depending on the ...
1
vote
1answer
527 views
Pull is not possible because you have unmerged files, git stash doesn't work. Don't want to commit
I just want to pull. I have changes to disregard, my Gemfile and Gemlock files and I'd be happy to just overwrite them and just pull. I tried stashing my changes away, this didn't work out for me. ...
1
vote
1answer
39 views
Keep stash after git filter-branch --subdirectory-filter
I recently split out my repository (residing in bigproj) using git filter-branch --subdirectory-filter deep/in/my/project. Then, I moved .git directory to deep/in/my/project.
Now, stash is in a ...
1
vote
2answers
88 views
git - how can i stash my changes go back to my last check in?
as in the title...
the story goes like so:
i branched my repo to try and do some changes to the way my wcf stuff works.
i checked in my changes to my new branch a day ago when everything was dandy ...
0
votes
2answers
65 views
git stash unable to apply the changes saved
I tried saving a git state using : git stash save changes_1.
I can see the stash list using: git stash list
But when I try to apply the stash using: git stash apply stash@{0}.
Now, I cannot see any ...