Les mises à jour ont été rejetées car la télécommande contient du travail que vous n'avez pas localement

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