概要
あとからまとめて.gitignoreする方法
上の記事で、gitignoreを参照し、ファイルをまとめてレポジトリーから削除しようとした時に、
-bash: /usr/bin/git: Argument list too long
と、なってしまう問題の対処法
方法
以下のコマンドで実行する
git ls-files --full-name -i --exclude-from=.gitignore | xargs git rm --cached
Go to list of users who liked
More than 3 years have passed since last update.
あとからまとめて.gitignoreする方法
上の記事で、gitignoreを参照し、ファイルをまとめてレポジトリーから削除しようとした時に、
-bash: /usr/bin/git: Argument list too long
と、なってしまう問題の対処法
以下のコマンドで実行する
git ls-files --full-name -i --exclude-from=.gitignore | xargs git rm --cached
Register as a new user and use Qiita more conveniently
Go to list of users who liked