I set up my git account on Machine A, did a “git commit“, then “git push origin master“.
On Machine B, I did a git clone XXX …and it cloned it from my origin.
Now, after I make changes and push it to origin, how do I “update” my Machine B with the latest changes? What if I made changes already on Machine B?
EDIT:
If you have uncomited changes, you can save then using the stash command before the pull command, and then you apply the stash to the updated changes