摘要: 1.git stash2.git rebase 45c2d5c --interactive 3.git stash pop4.git add5.git commit --amend 确认编辑后按control+x保存6.git rebase --continue 6.1 编辑冲突文件, 解决冲突 6 阅读全文
posted @ 2018-06-05 22:11 自由的鱼 阅读(1229) 评论(0) 推荐(0) 编辑
摘要: 约束的目的就是确保表中的数据的完整性。 常用的约束类型如下: 主键约束:(Primary Key constraint) 要求主键列唯一,并且不允许为空 唯一约束:(Unique Constraint) 要求该列唯一,允许为空,但只能出现一个空值 检查约束:(Check Constraint) 某列 阅读全文
posted @ 2018-06-05 21:03 自由的鱼 阅读(12364) 评论(1) 推荐(2) 编辑
摘要: 1、使用命令工具Git Bash,进入需要修改的工作目录。如C:/est 则输入 cd c:/test 2、重置所有缓存(注意后面有个.) git rm -r --cached . 3、重新添加(注意后面有个.) git add . 4、提交 git commit -m ".gitignore is 阅读全文
posted @ 2018-06-05 11:36 自由的鱼 阅读(9468) 评论(0) 推荐(1) 编辑
摘要: git stash git stash list git stash apply stash@{1} 阅读全文
posted @ 2018-06-05 10:42 自由的鱼 阅读(139) 评论(0) 推荐(0) 编辑