git push origin master

来源:互联网 发布:windows telnet服务器 编辑:程序博客网 时间:2024/05/16 04:10

git push origin master的意思是:

push to a remote

What is git push origin master

This is a command that says “push the commits in the local branch named master to the remote named origin”. Once this is executed, all the stuff that you last synchronised with origin will be sent to the remote repository and other people will be able to see them there.

参考:
[1] https://help.github.com/articles/pushing-to-a-remote/
[2] http://stackoverflow.com/questions/5617211/what-is-git-remote-add-and-git-push-origin-master

0 0
原创粉丝点击