Skip to content

Online commit messages omit changes to .keep/.gitkeep files

If I rename git-keep files with git mv, the online message for the commit doesn't show the rename like it usually does, it just leaves it out entirely.

Example:

$ git mv .keep .gitkeep
$ echo test > test.txt
$ git add test.txt
$ git commit -m 'gitkeep and test'
$ git push