Handling file renames in Git

For git mv the manual page says The index is updated after successful completion, […] So, at first, you have to update the index on your own (by using git add mobile.css). However git status will still show two different files: You can get a different output by running git commit –dry-run -a, which results … Read more