.gitignore をお手軽に作成する

いちから.gitignoreを作成するのは大変なので github/gitignore を利用します.

  • ライセンス: MIT
% mkdir repo_dir
% cd repo_dir
% wget https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore -O - >> .gitignore
% wget https://raw.githubusercontent.com/github/gitignore/master/Global/Vim.gitignore -O - >> .gitignore
% git init