上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 编辑sql的页面,找到下图美化按钮,点击即可。 阅读全文
posted @ 2020-12-24 14:36 juna3066 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 1.查看当前的远程链接的仓库 git remote 2.本地添加要推送的远程仓库链接 git remote add repoName url 3.推送 git push repoName branch1:branch2 info:该步骤需要输入对应gitlab/github的账号和密码 desc: 阅读全文
posted @ 2020-12-22 14:36 juna3066 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 1.查看提交日志 打开项目对应的目录,鼠标右键git bush here打开终端窗口,查看提交日志 (如果窗口过小,无法显示所有记录,可放大窗口或者点击回车向下查看。如果找到对应版本,冒号后输入q退出日志查看) git log 2.找到回退目标版本号,复制 3.输入命令回退 需保留修改内容的回退方式 阅读全文
posted @ 2020-12-17 10:42 juna3066 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: 参考文章: https://www.jianshu.com/p/271449df801f 过程中遇到问题的参考: 安装git报错参考:https://blog.slogra.com/post-344.html hexo deploy到服务器报错参考:https://blog.csdn.net/aus 阅读全文
posted @ 2020-12-11 22:55 juna3066 阅读(138) 评论(0) 推荐(0) 编辑
摘要: linux版本: CentOS Linux release 8.3.2011 查看版本命令 cat /etc/redhat-release 安装mysql yum update -y yum install mariadb-server -y 启动服务 systemctl start mariadb 阅读全文
posted @ 2020-12-09 00:39 juna3066 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1.安装nginx,并访问主机地址查看效果 yum install epel-release -y yum -y install nginx systemctl start nginx.service 访问ip地址 2.创建index.html目录,配置nginx并重启服务 创建虚拟主机根目录 mk 阅读全文
posted @ 2020-12-08 23:54 juna3066 阅读(150) 评论(0) 推荐(0) 编辑
摘要: ifconfig -a yum clean all yum -y update yum -y install httpd systemctl enable httpd.service --是能够 systemctl start httpd.service --开始 mkdir -p /var/www 阅读全文
posted @ 2020-12-08 01:21 juna3066 阅读(102) 评论(0) 推荐(0) 编辑
摘要: SqlServerv报错: 从数据类型 varchar 转换为 numeric 时出错。 现象: 一般insert语句的时候,再数据库中为numeric类型的字段,如果不插入这个字段,默认''空字符串插入,就会报错:numeric。 比如一个表:id,name,money insert into t 阅读全文
posted @ 2020-10-19 14:54 juna3066 阅读(8127) 评论(0) 推荐(1) 编辑
摘要: 描述: 最近换了新的idea版本,在使用maven联系springboot项目的时候,pom.xml中的依赖正确,点击运行按钮,报错找不到包 (例如:Error:(4, 52) java: 程序包org.springframework.beans.factory.annotation不存在),ctr 阅读全文
posted @ 2020-06-06 01:20 juna3066 阅读(8772) 评论(3) 推荐(4) 编辑
摘要: idea中左侧project栏自动隐藏如何解决? 阅读全文
posted @ 2019-11-19 14:58 juna3066 阅读(2965) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页