Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はgrails、ggtsを使用しており、.gitignoreintegrate-with --gitによってファイル を生成しました
.gitignore
行が含まれています
/target/
これは、ターゲット コンテンツ、特に生成された war ファイルをバージョン管理から除外する必要があると思います。 ただし、すべてのターゲット コンテンツはリポジトリの更新に含まれます。
それを避ける方法は?
ターゲットは既にバージョン管理されており、/target/ を含む .gitignore を追加してもそれは変わりません。
.gitignore を適用する前に、最初にそのフォルダーをインデックスから削除し、その削除を記録する必要があります。
git rm -r --cached target/ git commit -m "remove target from index"