oxcsml / epimap

MIT License
1 stars 0 forks source link

Removing unused scripts #18

Closed brynhayder closed 4 years ago

brynhayder commented 4 years ago

If there are legacy/unused scripts can we please remove them from the repo? (It's a little confusing for me and any other new comers.)

I'm sure everyone knows this, but it's possible to make a commit solely for deleting the files

git rm <files>
git commit -m "removing files" 

and then later if you want the files back you can just do

git revert <commit-hash>

which will undo the file deleting commit (but keep other changes since then).