I want to read a csv file from my private Gitlab repo given by my university into R. I know that you have to use the "Raw" file to read CSV's and I was able to pull it up. Reading a raw csv file from a public GitHub works just fine. I can provide the URL to the file from my private Gitlab: https://git.cs.slu.edu/courses/fall20/capstone/covid_dashboard/-/raw/master/covid_scrape/data/county_data.csv
However when you click on it, it will have you sign in and only using my credentials. Also, doing
read.csv("https://git.cs.slu.edu/courses/fall20/capstone/covid_dashboard/-/raw/master/covid_scrape/data/county_data.csv")
will just provide the HTML of the sign in page. I would like to know if there's a way for me to get this data onto R and read from it? Thank you!!