github使用记录

gitHub的使用:
一:checkout a project from repo.
①:打开git shell
②:执行以下命令:
    git clone  "project url"
    例如: checkout struts2的源码:
    git clone git://github.com/apache/struts2.git
    "project url":可以从gitHub上对应的项目中找到的.
㈡:上传本地更新到gitHub,执行如下命令
①:进入到project directory,例如:我的工程是listView,所以进入到listView目录
cd ./listView
②:执行以下操作
    git push origin master

㈢:获取更新;
    git pull origin master

你可能感兴趣的:(git,hub)