博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 ··· 25 下一页

2020年10月27日

摘要: 切换到master分支 git checkout master 查看已有的本地及远程分支 git branch -a 删除远程分支 git push origin --delete dev 删除后,再次查看分支情况 git branch -a 删除本地分支 git branch -D dev 远程分 阅读全文

posted @ 2020-10-27 10:23 米粒3 阅读(858) 评论(0) 推荐(1) 编辑

2020年10月19日

摘要: 1.git如何同步本地分支与远程origin的分支 分析:远端有新增分支,git fetch可以同步到新的分支到本地,但是远端有删除分支,直接"git fetch"是不能将远程已经不存在的branch等在本地删除的 解决方法:git fetch --prune #这样就可以实现在本地删除远程已经不存 阅读全文

posted @ 2020-10-19 14:41 米粒3 阅读(1032) 评论(0) 推荐(0) 编辑

2020年9月18日

摘要: 出现vue command not found,原因是npm默认安装路径变动了 最后,说一下完整的设置方法:(我的nodejs安装路径为D:\nodejs) 一、在D:\nodejs文件中新建文件夹node_cache,而后打开cmd,npm config set cache "D:\nodejs\ 阅读全文

posted @ 2020-09-18 11:37 米粒3 阅读(1707) 评论(0) 推荐(0) 编辑

2020年6月18日

摘要: git切换分支git pull 拉取最新代码git branch -a 获取全部分支git status 获取当前分支代码状态 //含没提交的代码git add . 把代码添加到分支git commit -m <提交描述> 把代码提交到本地 //代码都提交了1. git checkout <分支名> 阅读全文

posted @ 2020-06-18 11:07 米粒3 阅读(160) 评论(0) 推荐(0) 编辑

2019年12月20日

摘要: 右键快捷方式,后面添加--disable-web-security --user-data-dir=E:\MyChromeDevUserData "D:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-s 阅读全文

posted @ 2019-12-20 16:03 米粒3 阅读(427) 评论(0) 推荐(0) 编辑

2019年10月16日

摘要: 安装的组件: Chinese(Simplified) Language Pack for Vistual Studio Code Git History GitLens open in browser Vetur 阅读全文

posted @ 2019-10-16 15:57 米粒3 阅读(110) 评论(0) 推荐(0) 编辑

2019年9月27日

摘要: git log --pretty='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --since="2019-09-01" --before="2019-09-27" --author="$name" --prett 阅读全文

posted @ 2019-09-27 10:57 米粒3 阅读(147) 评论(0) 推荐(0) 编辑

2019年9月9日

摘要: 1.合并分支过程liuzf-buylist==>fxgao_userSearchgit status -查看一下当前分支文件修改情况(包括修改、删除、增加、冲突项)git push origin liuzf-buylist -推送到远程分支git branch -a -查看本地所有分支git pul 阅读全文

posted @ 2019-09-09 11:37 米粒3 阅读(164) 评论(0) 推荐(0) 编辑

2018年10月11日

摘要: /* 清除IE10及以上版本input的叉叉(X)和密码输入框的眼睛图标 */ input::-ms-clear { display: none; } input::-ms-reveal { display: none; } /*清除谷歌浏览器下的 search 叉号 */ input[type=s 阅读全文

posted @ 2018-10-11 09:38 米粒3 阅读(2874) 评论(0) 推荐(1) 编辑

2018年9月27日

摘要: 今天公司考虑seo设计方案,服务端渲染(ssr)和 预渲染的方式,不过只是打算对几个简单的页面seo,所以选择了使用预渲染的方式,以下是实现过程中遇到的问题,供大家查看,有不对的地方请指正: 使用prerender-spa-plugin,官网文档说是必须使用history模式 1.history模式 阅读全文

posted @ 2018-09-27 18:02 米粒3 阅读(2501) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 25 下一页