iOS のライブラリ管理で最もよく使われる CocoaPods の Pods ディレクトリを git で管理したくない時、
.gitignore のファイルに Pods/
と記載する。
しかし Git のキャッシュが原因で反映されないことがある。
$ cd プロジェクトのディレクトリ
$ git rm -r --cached .
$ git add .
$ git commit -m ".gitignoreの反映"
以上でバージョン管理を外せる。
Go to list of users who liked
More than 3 years have passed since last update.
iOS のライブラリ管理で最もよく使われる CocoaPods の Pods ディレクトリを git で管理したくない時、
.gitignore のファイルに Pods/
と記載する。
しかし Git のキャッシュが原因で反映されないことがある。
$ cd プロジェクトのディレクトリ
$ git rm -r --cached .
$ git add .
$ git commit -m ".gitignoreの反映"
以上でバージョン管理を外せる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked