|
本帖最后由 skyone 于 2021-11-18 20:59 编辑
第一步:创建一个仓库,将你的博客文件夹传进去
注意:不要把依赖库给装进去了!!!
这是一份差不多通用的 `.gitignore` 文件,使用它后应为问题不大
```````````````````````````````````````````````
.DS_Store
Thumbs.db
db.json
*.log
node_modules/
public/
.deploy*/
```````````````````````````````````````````````
git五连
git init .
git add .
git commit -m "提交博客"
git add remote origin 你的仓库
git push origin master


|
|