cara memperbarui repositori yang ada di github

git init
git add . or git add --all
git commit -m 'First commit'
git remote add origin remote github.com/username/repository.git
git remote -v
git push origin master || git push -f origin master
Isaac