How can I stash only one file out of multiple files which are on my branch, is there a way to do so ?
Thanks.
|
How can I stash only one file out of multiple files which are on my branch, is there a way to do so ? Thanks.
| |||||||
feedback
|
|
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:
| |||||||||||||
feedback
|
|
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. | |||||||||
feedback
|
|
Since creating branches in Git is trivial you could just create a temporary branch and check the individual files into it. | |||||||
feedback
|
|
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:
| |||||||
feedback
|