Tagged Questions
97
votes
8answers
10k views
Recover dropped stash in git
I frequently use "git stash" and "git stash pop" to save and restore changes in my working tree. Yesterday I had some changes in my working tree that I had stashed and popped, and then I made more ...
42
votes
4answers
7k views
How would I extract a single file (or changes to a file) from a git stash?
I'd like to know if it is possible to extract a single file or diff of a file from a git stash without popping the stash changeset off.
Might anyone be able to provide some suggestions/ideas about ...
38
votes
6answers
8k views
git: How do you stash an untracked file?
I have changes to a file, plus a new file, and would like to use git stash to put them away while I switch to another task. But git stash by itself stashes only the changes to the existing file; the ...
29
votes
1answer
949 views
Why does `git stash -p` sometimes fail?
I ♥ git stash -p. But sometimes, after a satisfying session of y, n, and s, I get this:
Saved working directory and index
state WIP on foo: 9794c1a lorum ipsum
error: patch failed:
...
26
votes
1answer
10k views
git stash blunder: git stash pop and ended up with merge conflicts
I did a git stash pop and ended up with merge conflicts. I removed the files from the file system and did a git checkout as shown below, but it thinks the files are still unmerged. I then tried ...
17
votes
1answer
1k views
how can I git stash a specific file?
How can I stash a specific file leaving the others currently modified out of the stash I am about to save?
For example, if git status gives me this:
younker % gst
# On branch master
# Your ...
17
votes
5answers
2k views
Is it possible to push a git stash to a remote repository?
In git, is it possible to create a stash, push the stash to a remote repository, retrieve the stash on another computer, and apply the stash?
Or are my options:
Create a patch and copy the patch ...
14
votes
3answers
2k views
Why isn't the git stash unique per branch?
I suppose it allows for moving changes from one branch to the next but that's what cherry picking is for and if you're not making a commit of your changes, perhaps you shouldn't be moving them around?
...
10
votes
3answers
5k views
How to make git merge handle uncommitted changes to my working tree?
A co-worker and I are both working on the master branch at the moment. I have some code in my working tree that I don't want to commit (debugging statements and the like). Now if he commits changes ...
9
votes
4answers
5k views
Undoing a git pull --rebase
Hey I'm new to git and I need to undo a pull, can anyone help?!? So what I've done is...
git commit
git stash
git pull --rebase
git stash pop
this created a bunch of conflicts and went a bit ...
8
votes
3answers
727 views
git stash and edited hunks
I totally love git add -p and git stash but I occasionally have the following problem, which is reproduced by the following sequence of commands:
git add -p my_file: then I edit a hunk manually ...
6
votes
2answers
86 views
Change Git stash message
I have a stash saved for the future that I want to give a meaningful name. While it's possible to pass a message as argument to git stash save, is there a way to add a message to an existing stash?
6
votes
1answer
627 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 ...
6
votes
2answers
326 views
git: Can I stash an untracked file without adding it to the index?
A related question How do you stash an untracked file? was answered with "track the file." This doesn't work for my particular needs, however.
I'm trying to stash everything that isn't in the index ...
5
votes
2answers
269 views
Turning off the pager in git for the stash command only
I generally like the use of the pager in git, but for git stash the pager annoys me. When calling git stash list, I don't want to be shown the three lines of output in the pager -- it forces me to ...
5
votes
2answers
477 views
Is it possible to drop a single file from git stash?
Is it possible, without pop whole stash and save another without this particular file?
4
votes
1answer
1k views
Undoing accidental git stash pop
I stashed some local changes before doing a complicated merge, did the merge, then stupidly forgot to commit before running git stash pop. The pop created some problems (bad method calls in a big ...
4
votes
2answers
1k views
git - errors after merge conflicts during stash pop
Original title: git - update all files that have not been changed
Currently I am trying to update all files in a git repository that have not been changed. Lets say for example I have:
test1.py
...
4
votes
1answer
248 views
Prevent Git Stash from Resetting Staged Files
Assume the following scenario:
file a and b are both modified, and a is staged in the index. If you run git stash and then git stash pop, file a is no longer staged.
How you make git stash return ...
4
votes
1answer
1k views
git stash questions
I am running msysgit 1.7.3.1. If I run stash apply, and there is a conflict,
all of my stash changes get staged. Is this the correct behaviour? I found it a
little surprising.
Another question: if I ...
4
votes
1answer
146 views
Is it possible to choose a git stash when they're described by the date stashed?
I'm able to list git stashes by date with
git stash list --date=local
but how do I select a revision without getting
fatal: Needed a single revision
4
votes
4answers
203 views
Maintain set of local commits working with git-svn
I am using git to develop against a project hosted in subversion, using git-svn:
git svn clone svn://project/
My general workflow has been to repeatedly edit-and-commit on the master branch, then ...
3
votes
2answers
82 views
How can you tell if a git stash is no longer required?
Is it possible to tell whether a stash has already been applied, and therefore is no longer required, without doing git stash apply? Assume that I'm only using one branch.
This could be prevented by ...
3
votes
2answers
297 views
Can I fetch a stash from a remote repo into a local branch?
A colleague has a stash in their repository which I can access (via the filesystem), and I'd like to pull that stash into a branch in my repository.
% git ls-remote ~alice/work/repo/ stash
...
2
votes
2answers
48 views
what are possible ways of referring to a git stash?
In
git stash show stash@{x}
what values can x take(apart from the whole numbers pointing to the serial number of the stash)?
2
votes
2answers
240 views
Resolving Git merge conflicts
A Git repository has been cloned on several developers' local machines. Some changes have been made to the code in the repository. We're now getting the error:
error: Your local changes to the ...
2
votes
2answers
135 views
Stashing only un-staged changes in Git
I'd like to do the following work flow:
Add changes to the stage.
Stash all the other changes that were not staged.
Do some stuff with the things in stage (i.e. build, run tests, etc)
Apply the ...
2
votes
3answers
591 views
Switching a branch after aborting current changes in git
I cloned a git repo and then started playing around in its master branch. After a while, I want to ignore the changes I just made (without committing them), and switch to a different branch. However, ...
2
votes
2answers
161 views
Git command to save a stash without modifying working tree?
I have been wanting to use a git command that saves a stash without modifying my working tree, as a lightweight backup that's safe from any git resets or whatever I might do to screw up my index. ...
2
votes
1answer
201 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 ...
2
votes
2answers
206 views
Is there a maximum number of git stashes?
Is there a maximum number of git stashes, or can you have as many as you like?
I'm aware that
git stash list
doesn't list as many results as
git stash list --date=local
But does Linus Torvalds ...
1
vote
1answer
47 views
Git apply stash using conflict notation
It may sounds weird, but sometimes during some quick-and-dirty hacks I would like to have the files changed to reflect both prior version and stashed changes after a git stash apply:
...
1
vote
1answer
29 views
How to combine multiple stashes in git
This is a pipeline on branch frontend over the last two weeks.
| Stash@{3} is all code since Stash@{1} (excluding the two tiny commits)
| Tiny Commit
| Tiny commit
| Huge bulk commit two weeks ago, ...
1
vote
1answer
68 views
`git stash` during a merge conflict
We've done something bad.
We ran git stash save during a merge conflict, and now we can't restore our work.
Things we've tried:
git pull -Xours origin master
git stash apply --index
And:
git ...
1
vote
1answer
107 views
Aborting a stash pop in Git
I popped a stash and there was a merge conflict. Unlike the question that is listed as a duplicate, I already had some uncommitted changes in the directory which I wanted to keep. I don't just want to ...
1
vote
1answer
39 views
How to access a stash(git) saved with `git stash save --patch name` ?
I am able to stash a patch of changes
by doing git stash save --patch name
, which gets listed when I do git stash list.
Now how do I refer to this stash using the name?
1
vote
1answer
60 views
Taking your work Hostage with git?
Here's the situation...
I need to be able to rebase a git repository branch to a point in time, then remove (and stash or keep) my commits beyond that point in time. Retaining the ability to ...
1
vote
1answer
138 views
git status: what is UU and why should add/rm fix it?
Here is the current state of this feature branch.
Recent Steps:
Remote development branch diverged
Fetched remote development branch
Stashed local feature branch's diverged changes that I want to ...
1
vote
1answer
330 views
After filtering master, how do I retrieve stashed changes on the old master?
I followed GitHub's instructions for removing sensitive files from a git repository because I wanted to remove some binaries that should not have been checked in.
My first invocation of the git ...
1
vote
3answers
727 views
Git - switching between branches in the middle of work
For various reasons (code review mostly) I need to switch from current development branch to other branches quite often.
Currently, I use either 'git stash' to shelve the uncommitted changes, ...
0
votes
1answer
33 views
Aborting `git stash apply` [closed]
Possible Duplicate:
How to reverse apply a stash?
I regret having applied a stash (wrong branch). How can I undo this and have my stash back to my stash list in order to apply it later on ...
0
votes
1answer
24 views
TortoiseGit: “Stash POP Fail!!!” repeats, even after resolving conflict
I am using TortoiseGit to work with a repository with a remote origin. I frequently have to stop in the middle of one change to work on another, so I use the stash feature to cordon off development ...
0
votes
1answer
30 views
Problems with applying stashed changes
I needed to push a quick fix for a bug, so I stashed the changes I was working on. After I finished the bug fix, I committed it, then pulled the changes from the repository, and then pushed my ...
0
votes
3answers
204 views
Why doesn't git format-patch work for stashes?
If I run
git format-patch -1 stash@{0}
git returns silently without creating any file. Why does this happen? How can I save a stash in a format compatible with git am?
0
votes
1answer
476 views
git stash apply does not restore all the files
Ok, so i have run into this a few times and it's really annoying. Scenario:
modify a file say a.txt (add say two lines)
stash it
stash apply
git reset
remove the two lines added to a.txt because you ...