LoginSignup
27
25

More than 5 years have passed since last update.

デフォルトの .gitignore を使用する方法

Last updated at Posted at 2014-03-19

手順

  1. .gitignore を用意する
  2. 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 を生成するコマンドラインツールも存在する

simonwhitaker/gibo

References

27
25
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
27
25