Qiita Conference 2025

成瀬允宣 (@nrslib)

設計の本質:コード、システム、そして組織へ

798
691

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitの管理対象から特定のファイル、ディレクトリを削除する

Last updated at Posted at 2014-01-07

追記: 下記記載内容も含め、様々なTipsを記載: Git Tips - Qiita

gitの管理対象から特定のファイル、ディレクトリを削除する

.gitignore書き忘れて add & commit しちゃったとかよくありますよね。そんな人いないっすよね:-)
そんな時は git rm

ファイルも一緒に削除したいとき〜

$ git rm [削除したいファイル]

ディレクトリごと逝きたいとき〜

$ git rm -r [削除したいディレクトリ]

ファイルを残したいとき〜

--cachedオプションを付けることにより、ファイルを残したまま管理対象から外すことができます。

$ git rm --cached [削除したいファイル]

ファイルを残した場合は必ず.gitignoreに追記するように。

ちなみに~

.gitignore作るのは”gibo”を使うと便利です。

.gitignoreを作ってくれるgiboが便利すぎる - hnwの日記

798
691
1

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

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
798
691

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?