======记一次从创建仓库到上传代码的过程======
项目地址:https://github.com/webxing/Pagination.class.php
=====首先借用阮一峰老师的图说明一些关系=====
图片取自:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html
单分支操作
创建仓库
克隆代码到本地
$ git clone https://github.com/webxing/Pagination.class.php.git
进入文件夹
$ cd Pagination.class.php
或者在文件夹里右键,选择Git Bash Here(如果你安装了git)
正常写代码即可
当前处于master分支上,也可以新建分支,这个最后再记录操作,目前在只在主分支上操作。
添加所有文件至暂存区
$ git add .
提交所有文件至本地仓库
$ git commit -m 'Pagination.class.php'
推送提交至远程仓库
$ git push origin master