新建的一个工作仓库界面情况

github-仓库基本-下载-上传_git

github-仓库基本-下载-上传_git_02

在线代码的下载

通过HTTPS,可以免密码下载

git clone 网址

把本地修改的代码更新到网上

打叉的一步不写
github-仓库基本-下载-上传_免密码_03

把本地的版本传到网上

…or push an existing repository from the command line
git remote add origin https://github.com/ifubing/gitone.git
git push -u origin master

github-仓库基本-下载-上传_免密码_04