# connect local repo to remote repo
# you need to add a repo on github first
git remote add origin git@github.com:simongfxu/workshop.git
git pull origin master
git push origin master
# show remote name and url
git remote -v
# delete remote
git remote rm origin