1
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?

More than 3 years have passed since last update.

【Git】コミット履歴から特定のファイルのコミット情報を全て削除

Posted at

自分用のメモとして残します。

#■やり方
事前に対象ブランチをチェックアウトする。
下記のコマンドで対象ファイルを削除

git filter-branch -f --index-filter 'git rm --ignore-unmatch ファイルパス' HEAD

#####このままではリモートと競合するため、リモート側の対象ブランチを削除

git push origin :ブランチ名

#####その後ローカルブランチをコミットする。

git push origin ブランチ名

以上。

1
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
1
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?