8wd3: github branch push
需要下载远程仓库到本地 选一个地方存放仓库
$ cd Downloads/
克隆下载
$ git clone 仓库master地址
进入下载的仓库文件夹
$ cd Octodog
看看在哪
$ git status
在master上,但是我要去frontjie branch分支上传啊
转移
$ git checkout -b frontjie
$ git branch
把要提交的home文件夹copy到本地frontjie里面
$ git status
看到转移到master下面的frontjie分支来了,多了一个home文件夹,那就开始commit吧
$ git commit -m "这里写批注"
历史性的一刻到了,把文件push到frontjie
$ git push --set-upstream origin frontjie
当哒~