Обновления были отклонены, потому что пульт содержит работу, которой у вас нет локально

git remote add origin [//your github url]

//pull those changes
git pull origin master 

// or optionally, 'git pull origin master --allow-unrelated-histories' if you have initialized repo in github and also committed locally
//now, push your work to your new repo

git push origin master
Martyna Huza