Mac 配置 alias

  • .bashrc:当登录时以及每次打开新的shell时,该文件被读取
  • .bash_profile: 当用户登录时,该文件仅仅执行一次!默认情况下,设置一些环境变量,执行用户的.bashrc文件
  1. cd ~
  2. touch .bashrc # 在用户目录下,创建一个bash信息
  3. subl .bashrc
  1. alias ga="git add ."
  2. alias gb="git branch"
  3. alias gc="git commit"
  4. alias gd="git diff"
  5. alias gf="git fetch -p"
  6. alias gk="gitk --all"
  7. alias gl="git log"
  8. alias gp="git push"
  9. alias gr="git rebase"
  10. alias gs="git status"
  11. alias gco="git checkout"
  12. alias gsu="git submodule update"
  13. alias ng="nginx"
  14. alias ngr="nginx -s reload"
  15. alias kng="pkill nginx"
  16. alias g="git"
  1. source ~/.bashrc # 使得设置的别名生效
  1. subl ~/.bash_profile # 让别名永久生效
  2. # 添加 source ~/.bashrc 到 ~/.bash_profile

mac 使用code命令打开VSCode

打开VSCode –> command+shift+p –> 输入shell command –> 点击提示Shell Command: Install ‘code’ command in PATH运行 –> 在命令行输入 code . -a

mac 使用subl命令打开sublime

sudo ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl

资源

GitHub does dotfiles - dotfiles.github.io