bc-anaisabel / juniperus_paper

Pipeline for analyzing Illumina MiSeq paired-end data of fungal communities
BSD 2-Clause "Simplified" License
2 stars 1 forks source link

archive should not be in github #8

Closed AliciaMstt closed 3 years ago

AliciaMstt commented 3 years ago

This directory is useful for your records, but it is not good practice to upload it to github. You can take it out of your repo or just add it to your gitignore list.

bc-anaisabel commented 3 years ago

I add it to my .gitignore list. Since this was an already tracked directory and all files were already committed in my repository what I did was unstage them:

git rm -r --cached some-directory

create a commit: git commit -m 'Remove the now ignored directory "some-directory"'

and push that to GitHub: git push origin master