I am working on a website from my laptop and my home computer. Previously I was just downloading with FTP, but that got kind of complicated since I started using GitHub.
How do I get the changes I committed from computer A up to GitHub on to computer B?
Former SVN user I guess?
You don’t “commit” from Computer A to github, you “push” from Computer A to github.
Similarly, you can pull from Computer B to your computer by using
git pull.If you haven’t, you need to clone the github repository first using
git clone