I am working on a project which has a bit of an uncommon behaving thing:
One of the files in the source code is a file that contains serious code, but it can edit itself to also include some configuration. Whether this is good design is a different discussion, but to be able to test my project, this file needs to be in its modified state.
Before I commit anything, I normally do an A-B comparison between the situation before and after my contribution. I use git stash to switch between base and my dirty working copy. The problem is that when using git stash, it also reverts my config-thing.
My current workaround is cumbersome: I do a git add path/to/settingsfile and then git stash --keep-index, but I rather dislike this workaround. Is there a more elegant solution to have git ignore all modifications to this file unless I specify otherwise?
See ” Preserve git –assume-unchanged files between branch checkouts “
That wouldn’t be reverted from a
git stash.Original answer
From “temporarily ignoring files “:
That would allow to ignore changes to that specific files.
This won’t help if you want to revert code changes while keeping config changes in the same file though.
And git stash will still revert it: How to prevent git stash dropping changes to files with the "assume unchanged" bit?
Note that, before Git 2.25 (Q1 2020), “
git stashsave” in a working tree that is sparsely checked out mistakenly removed paths that are outside the area of interest.See commit 4a58c3d, commit 8dfb04a (30 Oct 2019) by Johannes Schindelin (
dscho).(Merged by Junio C Hamano —
gitster— in commit 57b5301, 10 Nov 2019)