Git基础命令整理

4月 4, 2015

安装Git 下载 git OSX 版 下载 git Windows 版 下载 git Linux 版 创建新仓 […]

Read the full article →

已存在文件的项目设置远程Git

3月 24, 2015

场景:已存在的项目目录,设置git信息 方法一: git clone https://myrepo.com/g […]

Read the full article →

git取消修改并恢复版本

3月 22, 2015

#取消对文件的修改。还原到最近的版本,废弃本地做的修改。 git checkout — #取消已经暂存的文件 […]

Read the full article →

WebStorm快捷键(Mac版)

3月 16, 2015

⌘——Command ⌃ ——Control ⌥——alt ⇧——Shift ⇪——Caps Lock fn— […]

Read the full article →

npm使用国内镜像

3月 3, 2015

因为网络原因,使用npm安装比较慢,所以找了几个配置国内镜像的方法。 通过config命令 npm confi […]

Read the full article →

Mac上安装MongoDB

3月 1, 2015

MongoDB是什么 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可 […]

Read the full article →

Laravel 5 禁用CSRF token访问路由

3月 1, 2015

使用POST和DETELE方式访问路由,Laravel5默认是开启了CSRF,有二种方法可以关闭CSRF访问 […]

Read the full article →

Mac快捷键

2月 5, 2015

切换桌面: control + 左右方向键 显示桌面:command + F3 窗口最大化:control + […]

Read the full article →

Homebrew – Mac下的开发软件包管理工具

2月 2, 2015

Homebrew是什么 Homebrew都是Mac OS X上的软件包管理工具 ,Homebrew是一个Rub […]

Read the full article →

Mac ssh public key认证免密码登录

2月 1, 2015

ssh 登录可以使用公钥认证(ssh public key authentication)。 将客户端机器的s […]

Read the full article →