本地创建项目文件夹
例如: jekyll-document-to-pdf
初始化git
仓库
bash
$ cd jekyll-document-to-pdf
$ git init
添加改动文件 (或者添加所有文件)
bash
$ git add .
本地提交 git代码库
bash
$ git commit -m "初次提交"
$ git push origin master
如果没有关联远程库, 直接push, 则会报错
bash
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
在 github
上创建 代码库
关联本地库 (本地代码库添加远程地址)
bash
$ git remote add origin https://github.com/itaken/jekyll-document-to-pdf.git
push推送, 即可同步到github中.
bash
$ git push -u origin master
如果远程新建了文件,可以使用
git fetch origin
,同步自己的修改, 然后git pull origin master
拉取远程文件, 最后提交.