1. git工作流¶
你的本地仓库由 git 维护的三棵“树”组成。第一个是你的 工作目录,它持有实际文件;第二个是 暂存区(Index),它像个缓存区域,临时保存你的改动;最后是 HEAD,它指向你最后一次提交的结果。
2. 本地仓库连接到远程仓库¶
git remote add origin <server>
如:
## 我的本地文件加到我的博客
cd output/
git init
git remote add origin https://github.com/tulpar008/blog.git
git pull
git add .
git commit -m "for test"
git push