LoginSignup
0
0

More than 3 years have passed since last update.

新しいMacを業務で使いはじめて最低限必要だった設定

Last updated at Posted at 2019-10-04

思いついたら追記します

Git系

  • Xcodeインストール(Gitが入れば他のものでもOK)
  • GitXインストール(Gitクライアント。こちらもお好みで)
  • git config 設定
$ git config --global user.name xxxx
$ git config --global user.email xxxx@xxxx.xx
  • Gitコマンドでタブ補完を有効にする
$ sudo find / -name git-completion.bash
[git-completion.bashのパス]

$ vi ~/.bashrc
source [git-completion.bashのパス]

$ source ~/.bashrc

VSCode

ターミナルからcodeコマンドで開けるようにする

  1. Command + Shift + Pでコマンドパレット開く
  2. Shell Command: Install 'code' command in PATH 選択
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0