www

导航

08 2018 档案

git命令
摘要:将远程git仓库里的指定分支拉取到本地(本地不存在的分支 git checkout -b 本地分支名 origin/远程分支名 阅读全文

posted @ 2018-08-29 11:40 www_practice 阅读(93) 评论(0) 推荐(0)

Git操作笔记
摘要:.gitignore不起作用 阅读全文

posted @ 2018-08-09 11:33 www_practice 阅读(98) 评论(0) 推荐(0)

Mac下常用工具
摘要:MySql--Sequel Pro 阅读全文

posted @ 2018-08-08 20:16 www_practice 阅读(96) 评论(0) 推荐(0)

Linux常用命令
摘要:Mac一般使用bash作为默认shell Mac系统的环境变量,加载顺序为: /etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc /etc/profile和/etc/paths是系统级别,系统启动就会加载 ~/.bash_profile ... 阅读全文

posted @ 2018-08-02 09:54 www_practice 阅读(180) 评论(0) 推荐(0)

mysql操作基本命令
摘要:查看索引 : show index from table_name 创建索引:create index index_name on table_name(column_name) 创建唯一索引:create unique index index_name on table_name(column_name) 创建联合索引:create index index_name on table_na... 阅读全文

posted @ 2018-08-01 19:05 www_practice 阅读(118) 评论(0) 推荐(0)