手順
-
.gitignoreを用意する
- git の global 設定に保存する
.gitignore を用意する
.gitignore (今回は区別のため .gitignore_global を使用した) を作成し, ホームディレクトリに配置する.
~/.gitignore_global
# Vi/Vim backup files
*~
*.swp
*.swo
# Emacs backup files
.DS_Store
*~
*#
.#*
git の global 設定に保存する
git config --global core.excludesfile $HOME/.gitignore_global
上のコマンドを実行すると, 以下のように .gitconfig に反映される.
~/.gitconnfig
[core]
excludesfile = /home/${ユーザー名}/.gitignore_global
付録: .gitignore の生成
.gitignore を生成するコマンドラインツールも存在する