by shigemk2

当面は技術的なことしか書かない

oh-my-zshに学ぶ.gitignore

oh-my-zshの.gitignoreはこんな感じ。

locals.zsh
log/.zsh_history
projects.zsh
custom
!custom/plugins/example
!custom/example.zsh
*.swp
!custom/example.zshcache
cache/

*はワイルドカード。

!で否定を表す。

新しく本家にプルリクエストを投げるのでなければ、 オレオレプラグインはcustom/plugins/の下に配置するのが良い。