Reputation: 13602
I've used tortoise SVN for a few years but now moving into using Git. Could anyone please explain what the process is for doing the following in Git:
Get latest, Check in
I have managed to clone the repository successfully, made changes, committed then pushed the changes. Git says all is ok but I can't see the changes coming through on the remote server.
My set up is:
Remote server with Git repo on and Dev machine which connects to Git to take a local copy of the solution to work on.
also, when I view the history on my local machine, all is good! it shows all the history, when I go to the server, the changes are not showing!
If I am not doing it correctly, please let me know!
Thanks
Upvotes: 0
Views: 719
Reputation: 84343
Use git pull to merge in changes from upstream into your local branch, and git push to push your local changes up to the remote repository.
The Working with Remotes chapter of Pro Git has more examples.
Upvotes: 1