2015年7月14日
摘要: # Mac 下安装zshell ## 什么是shell大多数命令行用户接触最多的是Bash,因为Bash是各个版本操作系统(Linux&Mac)的默认shell。查看当前使用的shell```bash$ echo $SHELL```查看系统所支持的shell```bash$ cat /etc/she... 阅读全文
posted @ 2015-07-14 21:12 Frank.Fan 阅读(1462) 评论(0) 推荐(0) 编辑
摘要: # tag管理## 查看tag 太多的话用 grep 过滤```bash$ git tag | grep dev_20150525# 创建tag$ git tag -a dev_20150525_16 -m 'xxxx'```## 把tag push到远程```bash$ git push orig... 阅读全文
posted @ 2015-07-14 16:20 Frank.Fan 阅读(10527) 评论(0) 推荐(0) 编辑