开发常用软件
Webben
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
VsCode 常用拓展
Better CommentsBookmarksChinese(Simlified)LanguageGoPHP DebugPHP intelephensePHP intelliSensePylancePythonVim原创 2021-09-01 19:21:19 · 414 阅读 · 0 评论 -
Vscode 简单使用
常用插件快捷键返回上一个光标返回:Windows: Alt + ← ;或者 鼠标侧键Linux: Ctrl + Alt + - ;貌似数字键盘的减号没效果Mac: Ctrl + -终极奥义:VSCode左下角 “管理 / Manage” -> “键盘快捷方式 / Keyboard Shortcuts” -> 搜索 “前进 / Go Forward 或 后退 / Go Back”左右括号之间跳转:ctrl + shift + \...原创 2021-04-13 15:46:16 · 406 阅读 · 1 评论 -
Visual Studio Code 报错 Undefined type .intelephense(1009)
VSCode 配置可以把相关类库目录及 vendor 目录添加进来设置>Intelephense>Exvironment:Include Paths>添加依赖目录获取所有参数$class_list = get_declared_classes();foreach( $class_list as $class_name){ if( substr( $class_name, 0, 3) != 'Ap_'){ continue; } echo "原创 2021-03-05 19:33:23 · 5835 阅读 · 0 评论 -
Mac 常用软件
Terminalyum install fish#或者apt-get install fisecho "/usr/bin/fish" | sudo tee -a /etc/shellschsh -s /usr/bin/fish# Macbrew install fishecho "/usr/local/bin/fish" | sudo tee -a /etc/shellschsh -s /usr/local/bin/fish分屏Tmux 使用教程...原创 2021-01-05 19:25:21 · 370 阅读 · 0 评论 -
工作常用软件(整理)
图片处理编辑器软件名地址Notepad++http://rj.baidu.com/soft/detail/13478.html?aldSublime3http://www.sublimetext.com/3PhpStorm 9.0http://pan.baidu.com/s/1miOK33q 密码:h72cVimhttp...原创 2019-05-22 14:43:36 · 2927 阅读 · 0 评论 -
Git 常用命令
从仓库产出git clone https://www.baidu.com从仓库更新,合并git pull从远程获取最新到本地,不会合并git fetch origin添加新文件git add提交新文件git commit -m 'msg' 提交到远端仓库git push origin master查看修改过的内容git diff 恢复仓库版本git checkout查看远程git地址git remo原创 2017-07-12 11:59:06 · 667 阅读 · 1 评论 -
工作常用软件
编辑器 Notepad++ 下载:http://rj.baidu.com/soft/detail/13478.html?ald Sublime3 下载:http://www.sublimetext.com/3 PhpStorm 9.0 下载:链接:http://pan.baidu.com/s/1miOK33q 密码:h72c Vim 下载:h原创 2017-07-14 11:41:44 · 949 阅读 · 0 评论 -
在 Shell 提示符中显示 Git 分支名称的方法
PS1介绍PS1介绍配置获取branch名称通过git branch获取(不推荐)git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'通过.git/HEAD 获取(推荐)vi .git/HEAD############ef: refs/heads/dev############配置.bashrc原创 2017-07-18 17:54:08 · 1434 阅读 · 0 评论 -
初次运行 Git 前的配置
配置用户名git config --global user.name 'liweibin'git config --global user.email liweibin@okay.cn生成密钥#查看密钥cat ~/.ssh/id_rsa.pub#不存在则生成密钥ssh-keygen -t rsa -C "你的邮箱"以上完成以后就可以使用git了原创 2017-07-18 14:05:15 · 344 阅读 · 0 评论
分享