现在的印象笔记有积累,但是没有体系,也就是固化不到自己的体系中,这个是个问题,需要注意一下。也许技术性的东西,不再适合在印象笔记里放了。
一开始接触的,但是有些地方语焉不详。本地jekyll还需要参考
1. 利用github-pages建立个人博客
Including git,
2. Git 安装和使用教程
Theses are useful.
The point is you must set correct SSH keys
before your futher steps.
1
$git init
and others before add
https://blog.csdn.net/dayewandou/article/details/78408126
upload new:
1
2
3
4
$ git add .
$ git commit -m "first post"
$ git remote add origin https://github.com/username/projectName.git
$ git push origin master
upload the one you’ve cloned:
1
$ git clone git@github.com:keysaim/huxpro.github.io.git
1
2
3
$ git add .
$ git commit -m "first post"
$ git push origin master
https://www.jianshu.com/p/b011f6769bdf
If you cloned others repo,you should fork one, and remote add your local files to that fork, then commit and push.
[git](https://www.cnblogs.com/runningdonkey/p/6932407.html)
git作为支持分布式版本管理的工具,它管理的库(repository)分为本地库、远程库。 git commit操作的是本地库,git push操作的是远程库。
git commit是将本地修改过的文件提交到本地库中。 git push是将本地库中的最新信息发送给远程库。
Other useful links:
git command xuefeng, remote add