摘要:
1. git pull git fetch origin/* // 将远程代码拉到本地的远程分支,如origin/master git merge origin/* // 合并本地的远程分支到本地分支 2. get pull --rebase // 相当于 git fetch origin/* // 阅读全文
摘要:
1. 什么是Mongoose? mongoose是MongoDB的数据库的对象模型工具。可以通过操作在nodeJS中对mongoose的操作实现对数据库的操作。 背景知识: ORM:Object Relational Mapping对象关系映射。 是将对数据库的操作映射成对象的操作。(mongoos 阅读全文