• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






探索时空

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2020年5月14日

git使用心得记录 revert和reset区别
摘要: 第一次记录 Git global setup git config --global user.name "yanghaifeng" git config --global user.email "573618722@qq.com" Create a new repository git clone 阅读全文
posted @ 2020-05-14 14:56 探索时空 阅读(767) 评论(0) 推荐(0)
 

2020年5月9日

忧郁句子
摘要: 你自人山人海中而来,原来只为了给我一场空欢喜。你要去做一个大人,不要回头,不要难过。 阅读全文
posted @ 2020-05-09 14:15 探索时空 阅读(93) 评论(0) 推荐(0)
 

2020年4月2日

前端面试题
摘要: 1. 行内标签和块标签 行内标签:span br I a 块级标签:div h系列 p li 2. 阻止冒泡 标准:e.stopPropagation() IE: e.cancelBubble = true 3. 阻止默认事件 标准:e.preventDefault() IE: e.returenV 阅读全文
posted @ 2020-04-02 20:32 探索时空 阅读(123) 评论(0) 推荐(0)
 

2019年9月19日

解决push报错 src refspec vue_develop does not match any.
摘要: 解决办法: git push -f origin HEAD:你的分支名 阅读全文
posted @ 2019-09-19 14:25 探索时空 阅读(491) 评论(0) 推荐(0)
 
git拉取代码的时候提示Authentication failed for []
摘要: 解决办法,用管理员身份打开git命令行,执行 git config --global credential.helper store 重新clone的时候会提示让输入用户名,然后弹出框让输入密码,就可以了 阅读全文
posted @ 2019-09-19 11:26 探索时空 阅读(14522) 评论(0) 推荐(0)
 

2019年3月25日

nginx配置、域名、前端代码部署
摘要: 服务器上部署nginx,部署多个独立的代码,用nginx做域名映射的配置方法: 2. 在/data/nginx/conf/ 目录下创建不同的配置文件 3.配置对应的配置文件,以hw.keplermarket.cn.vhost为例 4.放置发布的代码到对应的目录,例如 /data/deploy/hw. 阅读全文
posted @ 2019-03-25 17:26 探索时空 阅读(4009) 评论(0) 推荐(0)
 
服务器操作nginx相关操作命令
摘要: 服务器操作nginx相关操作命令 登录服务器: 启动nginx: 查看nginx是否启动 安装网络工具 查看端口号 Node安装 安装wget 解压文件 重命名 使用scp上传文件到linux,可以不用密码 nginx操作的命令 阅读全文
posted @ 2019-03-25 10:35 探索时空 阅读(525) 评论(0) 推荐(0)
 

2018年10月11日

git使用命令
摘要: 1.删除本地不存在远程存在的远程分支 git remote prune origin 或者 git fetch -p 命令 命令行解释--prune -p -- remove any remote tracking branches that no longer exist remotely 英文意 阅读全文
posted @ 2018-10-11 22:10 探索时空 阅读(151) 评论(0) 推荐(0)
 

2018年9月6日

超出隐藏显示
摘要: 1.超出两行显示 overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; 2.超出一行隐藏 overflow: hidden; t 阅读全文
posted @ 2018-09-06 18:00 探索时空 阅读(187) 评论(0) 推荐(0)
 

2018年9月4日

微信小程序清除默认样式
摘要: 1.清除button的默认样式 button::after{border:none;}input{outline:none;border:none;list-style: none;} 阅读全文
posted @ 2018-09-04 11:44 探索时空 阅读(4930) 评论(0) 推荐(0)
 
下一页