How can I stash only one of multiple changed files on my branch?
|
This will stash everything that you haven't previously added. Just
For example, if you want to split an old commit into more than one changeset, you can use this procedure:
|
|||||||||||||||||||||
|
|
Since git is fundamentally about managing a all repository content and index (and not one or several files), git stash deals, not surprisingly, with the all working directory. The original answer (below, June 2010) was about manually selecting what you want to stash. Casebash comments:
bukzor's answer (upvoted, November 2011) suggests a more practical solution, based on About that option, chhh points out an alternative workflow in the comments:
(Original answer June 2010: manual stash) Yet,
However that will save the full index (which may not be what you want since it might include other files already indexed), and a partial worktree (which could look like the one you want to stash).
might be a better fit. If For one or several files, an intermediate solution would be to:
At the end of that rather cumbersome process, you will have only one or several files stashed. |
|||||||||||||||
|
|
The problem with VonC's `intermediate' solution of copying files to outside the Git repo is that you lose path information, which makes copying a bunch of files back later on somewhat of a hassle. A find it easier to use tar (similar tools will probably do) instead of copy:
|
|||||||||
|
|
Similar situation. Did commit and realized it's not ok.
Based on the answers this helped me.
|
||||
|
|
|
In this situation I |
|||
|
|
|
Since creating branches in Git is trivial you could just create a temporary branch and check the individual files into it. |
|||||||||
|
|
Try this:
This will cancel the [file] changes and restore master branch version of the file. Note: You can use any branch instead of |
|||||||||||
|
git stash --keep-indexdoes keep the index, but it stashes everything -- both in the index and out. – Raman Mar 17 at 19:25