Git 基础操作
远程到本地
$ git fetch
$ git merge origin/master
本地到远程
关联
git remote add origin git@github.com:haoxr/-faceDetection.git
提交到本地
$ git add .
$ git commit -m "commit infomation"
push
$ git push -u origin master <- 第一次使用
$ git push origin master