Git 学习笔记:提交新项目到 github 仓库
一、创建本地仓库并提交代码 git init 初始化一个新仓库。 git add git commit 把文件提交到本地仓库。 二、拉取远程仓库 先使用 git remote add 命令添加一个远程仓库,仓库地址:https://github.com/madawang/vazd 。 [crayon-694a ... 阅读更多
一、创建本地仓库并提交代码 git init 初始化一个新仓库。 git add git commit 把文件提交到本地仓库。 二、拉取远程仓库 先使用 git remote add 命令添加一个远程仓库,仓库地址:https://github.com/madawang/vazd 。 [crayon-694a ... 阅读更多
primary key 用于标识主键,字段被设置为主键后该字段所有值不可重复且不能为 null,每个表仅可有一个主键。 unique 设置字段不可重复,但不包括 null 值,每张表可以有多个 unique 字段,null 并不包括空值。 简单来说 primary key = unique + not null 。 一、 ... 阅读更多