PennLINC / luo_wm_dev

0 stars 0 forks source link

Ignore hidden files #1

Open tsalo opened 6 months ago

tsalo commented 6 months ago

@audreycluo it looks like your repo includes hidden files. I would recommend expanding your gitignore with the Python (https://github.com/github/gitignore/blob/main/Python.gitignore) and R (https://github.com/github/gitignore/blob/main/R.gitignore) templates, and untracking any files the updated gitignore would ignore.

tsalo commented 6 months ago

Once you update the gitignore, you should be able to stop tracking the files with something like the following:

git rm --cached superficialWM_analyses/.*
git rm --cached superficialWM_analyses/**/.*

@mattcieslak does that look right?