私は git リポジトリを作成し、Android プロジェクトで少し作業しましたが、生成されるたびに変更されるファイルをリポジトリに追加したことがわかりました。どうすればそれらを削除でき、再び追加されないことを確認できますか?
このようにロックする.gitignoreにすでにそれらを追加しました
bin/classes/**
gen/**
bin/PDiXUploader.apk
bin/classes.dex
bin/resources.ap_
gen/de/srs/android/pdixuploader/R.java
しかし、バージョン管理下にないようにレポから削除する方法がわかりません。
これは私のgitステータスログです
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: bin/PDiXUploader.apk
# modified: bin/classes.dex
# modified: bin/resources.ap_
# modified: gen/de/srs/android/pdixuploader/R.java
# modified: res/layout/activity_instance_selection.xml
# modified: res/layout/activity_main.xml
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# res/values/dimens.xml
no changes added to commit (use "git add" and/or "git commit -a")
ありがとう