echo "# assignments" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jorditorresBCN/assignments.git
git push -u origin master
How I updated my local repository on my labtop from the remote repository (code updated directly at remote repository)
git pull origin master
git add README.md
git commit -m "second commit"
git push -u origin master