Reputation: 13
I'm new with github . Can somebody tell how can I retrace the csv link - https://raw.githubusercontent.com/datasets/covid-19/master/data/countries-aggregated.csv to its source where it has been uploaded
Upvotes: 1
Views: 311
Reputation: 74
There are 2 ways.
Method 1
In the link you provided, replace "raw.githubusercontent.com" with www.github.com
Method 2
Another easy way to retrace this csv link would be to simply search it on google.com
In this case, the second result points to https://github.com/datasets/covid-19/blob/master/data/countries-aggregated.csv
If you open this link that you found, you will see the repository that the file is uploaded to. By clicking on "covid-19" beside the "master"/branch dropdown, you will see the entire repository.
Upvotes: 1