I am using Git to publish some code to GitHub. This is my first time using Git so I only know what I need to at the moment. I am using multiple computers at home to do changes. Can I push my changes from one computer to another before pushing to GitHub?
Share
You can set up another remote, if the other computer has a Git or HTTP server running on it:
I find it’s easier to host a read-only repository over HTTP on each computer (by sharing my Git directory over Apache or IIS), then log onto the other computer and
git pull.