Rename files with .r
extension to .R
#253
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR addresses the spring cleaning checklist in #156 by renaming all R scripts with
.r
extension to.R
to standardize the extensions. The differences in extensions was a remnant of legacy scripts.Achieving this on git was quite tricky so I'll document it here for future sake.
The issue was that git was not recognising the renamed files even though I changed my configuration to
git config core.ignorecase false
. I used R'srename.files()
first but that did not work.Here's what worked:
.x
extension usingmv ./R/filename.r ./R/filename.x
.- I did them individually for some reason (maybe because of the trauma of having to start over again many times)
.x
extensions to.R
using the samemv ...
command.