Skip to content

Instantly share code, notes, and snippets.

@ochi0218
Last active August 29, 2015 14:02
Show Gist options
  • Save ochi0218/38c7c22c70772c335dae to your computer and use it in GitHub Desktop.
Save ochi0218/38c7c22c70772c335dae to your computer and use it in GitHub Desktop.
gitignore.ioを利用するためのzsh設定

zshに以下を追加。

function gi() { curl http://www.gitignore.io/api/$@ ;}

利用可能なリスト表示

$ gi list

利用可能なリスト表示(1行づつ表示したい場合)

$ gi list | tr "," "\n"

gitignoreファイル作成

$ gi ruby,osx > .gitignore

参考

http://www.gitignore.io/cli

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment