I have commit code from my desktop computer and now I am in another city and want to update my code in my laptop. What is the command to update a code. I was using svn 开发者_如何学JAVAand it is very easy to update a code like right click on svn local repo and click update but in github I don't know the proper command.
Regards,
git pull
This is the equivalent of svn checkout, not to be confused with git checkout. Type
git help
to get a list of git commands and an explanation in the shell.
精彩评论