摘要:
运行 git checkout -b dev origin/dev 报错 "Cannot update paths and switch to branch at the same time" 处理步骤: 1、首先确定远程仓库是否有dev这个分支 2、git remote -v 看看你是否有fetc 阅读全文
摘要:
本篇介绍一下MongoDB基本的增删改查的操作。首先来看看几个基本的数据库命令: 查看数据库: show dbs 切换数据库: use python21 查看集合:show collections 创建集合:db.createCollection("nor_col") 创建一个有容量限定的集合: d 阅读全文