2
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 1 year has passed since last update.

UnityのLibraryファイルがGitでコンフリクトするとき

Last updated at Posted at 2023-04-18

何が起きたか

共同でゲームを開発しているときにLibraryフォルダ内で無数のコンフリクトが生じ、プロジェクトが進められないくなりました、、しかも途中で.gitignoreに追加してもコンフリクトが収まりません。

原因

Unityでプロジェクトを作るとLibraryという名前のフォルダが生成されます。開発序盤でLibraryフォルダを共有する必要があると勘違いしており、開発序盤で.gitignoreにLibrary/PackageCacheのように部分的に無視するように書いてしまい、その設定がずっと生きているようでした。

解決

こちらのページを参考に、

git rm -r --cached . 

でキャッシュを消すとライブラリフォルダが共有されなくなり、問題が解決しました。単純なことですが結構詰まったので共有しておきます。

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