higan96技術メモ

https://github.com/higan96

2014-02-12から1日間の記事一覧

ホームフォルダにある.gitignoreの設定を読み込めるようにする

git

毎回、gitignoreすんの面倒なんで、必ず無視したいものは事前に設定しておきたい。 git config --global core.excludesfile ~/.gitignore これでホームフォルダの.gitignoreを読み込める。 ~/.gitignore ちなみに自分の~/.gitignoreはこんな感じ .idea/ .iml…

gitをカラーで表示させる

git

ホームフォルダの.gitconfigファイルを編集する。 vim ~/.gitconfig 以下を追加。 [color] ui = auto 以上。