Tagged Questions

4
votes
2answers
79 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 …
4
votes
3answers
290 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 …
9
votes
3answers
317 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 sugges …
9
votes
5answers
1k 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 …
1
vote
2answers
441 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 …
2
votes
3answers
440 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 …