简体   繁体   中英

Updating to fmdb 2.0?

We are usin fmdb and I see that fmdb 2.0 supports multithreaded calls. What is a good way to update to 2.0? Fmdb was added to the project before I got on this project and I dont want to break anything. We are using Git if that helps also. Thanks!

It depends on how "Fmdb was added to the project".

If it is a submodule , you can simply make a branch in which:

  • you will go in that submodule, and git pull the fmdb 2.0 tag (that is this commit : warning, this will result in a detached HEAD )
  • go back to the parent repo
  • commit (in order to record in the .gitmodules the new reference for fmdb)

You can then develop in isolation from the main branch of your project, with fmdb2.0 visible just within that new branch.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM