今天尝试把git与GitHub联系起来,方便后续往GitHub上面推送项目。过程中踩了几个坑,记录一下: 一、生成 GitHub--SSH-公钥 1、在git中用命令行 ssh-keygen -t rsa -C 'your email address' 文件名称及位置选择默认,enter即可。 pa ...
分类:
其他好文 时间:
2020-06-25 19:56:48
阅读次数:
58
mybatis插值,数据提交事务回滚数据库值为空 通过sql日志查看sql为:INSERT INTO `quanxian`.`user` ( phone, email, password, times, name, age, address, sex, hobby, work ) VALUES (p ...
分类:
数据库 时间:
2020-06-25 13:58:55
阅读次数:
49
定义 如果公共关键字在一个关系中是主关键字,那么这个公共关键字被称为另一个关系的外键。由此可见,外键表示了两个关系之间的相关联系。以另一个关系的外键作主关键字的表被称为主表,具有此外键的表被称为主表的从表。外键又称作外关键字。(来自百度百科) 要想理解外键的概念,就不得不提到主键了。 主键:当有多个 ...
分类:
数据库 时间:
2020-06-24 23:39:33
阅读次数:
63
问题描述:左侧是一个ListView控件,用于显示User类的Name属性,右侧显示其SelectedItem的其他属性,包括Age, Address,和Category。其中Category用ComboBox表示。在下拉框选中其他category,可以更改User的属性值。 如果Category是 ...
struct msghdr 结构体 struct iovec { /* Scatter/gather arrayitems */ void *iov_base; /*Starting address */ size_t iov_len; /* Number of bytes to transfer* ...
分类:
其他好文 时间:
2020-06-24 23:25:42
阅读次数:
75
一、 docker默认网卡docker0 172.17.0.0可能会与主机冲突,这时候需要修改docker默认分配的网段 1、修改/etc/docker/daemon.json文件,加入以下代码 { "default-address-pools": [ {"base":"172.100.0.0/16 ...
分类:
其他好文 时间:
2020-06-24 20:08:44
阅读次数:
283
创建部门表和员工表 CREATE TABLE `dept` ( `id` int(11) NOT NULL AUTO_INCREMENT, `deptName` varchar(30) DEFAULT NULL, `address` varchar(40) DEFAULT NULL, `ceo` i ...
分类:
数据库 时间:
2020-06-23 21:21:06
阅读次数:
89
template.j2 模板 {{ansible_facts.hostname}}:{{ansible_default_ipv4.address}} This system's total memory is: {{ ansible_memtotal_mb }}MBs. The current fr ...
分类:
其他好文 时间:
2020-06-23 19:45:22
阅读次数:
71
备份文件: # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors tha ...
分类:
其他好文 时间:
2020-06-23 11:43:38
阅读次数:
63
网络模式 网络模式选择NET模式 查看网络配置信息 本地配置文件中获取网关地址和子网掩码 cd /Library/Preferences/VMware\ Fusion/vmnet8 cat nat.conf 复制出来 # NAT gateway address ip = 172.16.98.2 ne ...
分类:
系统相关 时间:
2020-06-23 11:38:24
阅读次数:
150