I have a folder in my repository where i have only create or delete files or subfolders, but never rename them. But git often interprets in one commit deleting a file and creating another file like renaming. How can i get rid of such behavior?
- Does "git commit" have parameter to restrict this in one particular commit?
- i use tortoisegit.Does it has a setting for a folder of repository to do restrict this
- Does such setting exist for entire repository? I would be worse of course, but if two previous variants don't work, it will be acceptable
git log --no-renames
, stackoverflow.com/a/46986531/7976758git config diff.renames false
Found in stackoverflow.com/search?q=%5Bgit%5D+turn+off+rename+detectiongit log/diff -M100
See stackoverflow.com/search?q=%5Bgit%5D+rename+similarity+index