I am doing a clone of a git repository and I am finding changed files. I have looked at some of the other posts with similar issues, but as of yet the steps don't seem to help. I have tried adjusting the autocrlf settings, the case settings and some of the other configurations, but I am still seeing modified files, when I do 'git status'.
The configurations from the core section of the .git/config is:
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = false
precomposeunicode = true
autocrlf = false
A truncated sample of paths that are being shown as modified are:
modified: applications/test/Dictionary/Make/files
modified: applications/test/Dictionary/Make/options
modified: applications/test/Dictionary/Test-Dictionary.C
modified: src/OpenFOAM/interpolations/patchToPatchInterpolation/PatchToPatchInterpolation.H
modified: src/OpenFOAM/interpolations/primitivePatchInterpolation/PrimitivePatchInterpolation.H
modified: src/OpenFOAM/matrices/LduMatrix/LduMatrix/LduMatrix.C
modified: src/OpenFOAM/matrices/LduMatrix/LduMatrix/LduMatrix.H
modified: src/OpenFOAM/matrices/LduMatrix/LduMatrix/LduMatrixATmul.C
modified: src/OpenFOAM/matrices/LduMatrix/LduMatrix/LduMatrixOperations.C
A truncated sample of paths that are being shown as untracked are:
applications/test/Dictionary/Test-dictionary.C
applications/test/Dictionary/testDict
applications/test/Dictionary/testDict2
applications/test/Dictionary/testDictInc
applications/test/Dictionary/testDictRegex
applications/test/Dictionary/value
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrix.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrix.H
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixATmul.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixOperations.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixPreconditioner.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixSmoother.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixSolver.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixTemplates.C
src/OpenFOAM/matrices/LduMatrix/LduMatrix/lduMatrixUpdateMatrixInterfaces.C
I did the following after each config change:
rm -rf *
git reset --hard
git status
The Git repository is git://github.com/OpenFOAM/OpenFOAM-2.3.x.git and the current operating system is MacOS X 10.9.5. Git version is 1.9.3. File system is HFS+ (case-insensitive).