Last updated
I have a file in my working directory being marked as typechange:
cook47@rcmac (blockbuster (master)): git status
On branch master
Changes not staged for commit:
(use "git add ..." to update what will be committed)
(use "git checkout -- ..." to discard changes in working directory)
modified: .gitignore
modified: Makefile
typechange: sample-data/stereo-frames/LEFT_stereo-test0000.png
typechange: sample-data/stereo-frames/LEFT_stereo-test0001.png
typechange: sample-data/stereo-frames/LEFT_stereo-test0002.png
When I do
rm -rf sample-data
git checkout -- sample-data
The same files get marked as "typechange."
How do I fix this problem?
They are symlinks in the repo, but are getting dereferences when I do the checkout I think.