logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git提交代码问题总结

文章目录1.git错误提交代码2.问题记录1.git错误提交代码错误的git 提交的步骤:git init//初始化仓库git add .//添加文件到本地暂存区或用 git add(文件name)git commit -m “first commit”//提交到本地仓库git remote add origin远程仓库地址//添加远程仓库git push -u origin master

#git
springboot实现简单的注册登录功能

spring官网通过spring官网初始化SpringBoot项目使用idea工具打开Springboot项目,项目结构添加pom依赖<!--springboot启动类--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-star

#spring boot#java
html验证码

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Title</title></head><body><label>验证码</label><input type="button"id="cod

#layui#html5#javascript
Node.js连接数据库

Nodejs连接Mysql数据库用Navicat管理工具,新建一个数据库,node_db新建一张user表使用WebStrom新建一个项目Node.js,在此目录下新建demo01,再新建一个包命名为db在db包下新建db.js文件,用来连接数据库//导入依赖var mysql = require("mysql");//创建数据库连接var connection = mysql.createCon

#big data#mysql#node.js
springboot实现简单的注册登录功能

spring官网通过spring官网初始化SpringBoot项目使用idea工具打开Springboot项目,项目结构添加pom依赖<!--springboot启动类--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-star

#spring boot#java
暂无文章信息