0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

vim-fugitiveを利用時にgit addするとスワップファイルまでステージングエリアに登録されるのを解決した。

Last updated at Posted at 2025-07-14
  • 問題
    vimのプラグインvim-fugitiveでgit addを実行するとスワップファイル(.swp)が誤ってステージングエリアに登録される。
  • 解決方法
  1. .gitignoreにスワップファイルを無視する設定を追加する

  2. スワップファイル用の専用ディレクトリを作成し.vimrcでスワップファイルの保存場所を指定する


具体的な方法

1 .gitignoreに以下を記述

スワップファイル(.swp, .swoなど)を無視する設定

.*.sw?

2 .vimrcにスワップファイルの保存先を指定


" スワップファイルの保存ディレクトリを指定(複数階層をサポート)

set directory^=$HOME/.vim/swap//
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?