How to upload to github

I know the commands to upload to github
git init
git remote add origin (website)
git add .
git commit -m "Initial commit"
git push origin master

however, when someone downloaded my project they didnt seem to get the files, what went wrong?

he was using
git pull
instead of
git pull origin master

Privacy & Terms