mangodb的twikoo评论数据上传和下载

下载数据命令

 mongoexport --uri mongodb+srv://xxx:[email protected]/ --collection comment --type json --out twikoo-comments.json

上传数据命令

 mongoimport --uri mongodb+srv://xxx:[email protected]/test --collection comment --type json --file twikoo-comments.json --mode upsert

说明:

第一个xxx:数据名称

第二个xxx:密码

test是指mangodb数据库的名称

git命令

写文章常用git

git add .
git commit -m "first commit"
git branch -M master
git push -u origin master