- 博客(12)
- 收藏
- 关注
原创 git基本操作
git操作流程1、在github创建远程仓库2、 在本地git clone 地址3、初始化本地仓库git init4、关联远程仓库 git remote add origin https://gitee.com/lp369/mypython.git5、第一次先拉取远程库中的README.md和.gitignore等文件,命令:git pull6、添加文件提交:git add 文件名或文件夹,接着git commit -m “此次操作的说明”7、提交本地代码git push origin mas
2021-01-28 18:25:25 91
原创 执行git命令时出现fatal: ‘origin‘ does not appear to be a git repository错误
在执行git pull origin master时出现: fatal: ‘origin’ does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists解决方案:git remote add origin git@github:bx
2021-01-28 18:23:23 233
原创 GIT操作流程
这里写自定义目录标题git操作流程git操作流程1、在github创建远程仓库2、初始化本地仓库git init3、关联远程仓库 git remote add origin https://gitee.com/lp369/mypython.git4、第一次先拉取远程库中的README.md和.gitignore等文件,命令:git pull5、添加文件提交:git add 文件名或文件夹,接着git commit -m “此次操作的说明”5、提交本地代码git push origin mas
2020-12-17 17:44:35 96
原创 Linux下MySQL数据库常用基本操作
1、显示数据库show databases;2、选择数据库use 数据库名;3、显示数据库中的表show tables;4、显示数据表的结构describe 表名;5、显示表中记录SELECT * FROM 表名6、建库create databse 库名;7、建表复制代码create table 表名 (字段设定列表);mysql> create table name(-> id int auto_increment not null primary key ,
2020-09-01 10:11:31 82
原创 阿里云纯净镜像服务器安装配置java环境
1.下载Xshell 6和Xftp,免费版即可,安装后,连接自己的阿里云服务器2.安装jdk8第一步:cd / 进入根目录同时在Xftp也能看到根目录结构在线安装有时候会下载失败,所以这里我们直接在网上下载linux包,以下是我的网盘路径链接:https://pan.baidu.com/s/14Bu-Mt22TSbuRxCLNDQj6w提取码:cl7o第二步:在usr路径下创建java和tomcat目录第三步:在Xftp上,进入java和tomcat目录。将对应的安装包上传进去第
2020-08-31 12:10:58 273
原创 eclipse中引入spring依赖
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.1.6.RELEASE</version></dependency>在pom.xml文件中,加入上面的依赖代码,version是版本,可以根据选择需要...
2020-07-07 11:14:46 589
转载 Maven系列教材
Maven系列教材 引用地址https://how2j.cn/k/maven/maven-repositories/1330.html
2020-07-07 10:03:30 97
原创 eclipse+maven+spirng配置项目
eclipse+maven+spirng配置项目一、maven安装配置二、创建Maven项目tomcat下载bulid项目创建运行环境tomcat引入spring框架文件一、maven安装配置1、首先在这个地址http://maven.apache.org/download.cgi下载maven,选择apache-maven-3.6.3-bin.zip这个免安装版本,可以解压到任意地方,但最好比较好找的目录。我的目录:I:\Maven\apache-maven-3.6.32、建立maven项目管理本
2020-07-06 16:59:53 111
转载 关于vs2017运行scanf("%c", &ch);报错问题
使用vs2017,遇到如下错误。1>------ 已启动生成: 项目: 20130925, 配置: Debug Win32 ------1> stdafx.cpp1>d:\code\20130925\20130925\stdafx.cpp(18): error C4996: ‘fopen’: This function or variable may be unsafe....
2019-03-15 10:00:53 434
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人