20160714

  • react native 最近升级到了0.29.+,android的原生文件添加了MainApplication,替代了原来MainActivity的功能,因此以前的工程升级版本的时候需要根据新的工程结构调整一下,不然一些经过rnpm link 的项目可能不发正常运行。
  • react native 指定版本初始化项目 react-native init projectname - -version 0.26.0
  • git config - -list 查看config 配置
  • git config - -unset - -global user.name 取消全局用户
  • git config user.name “master” 配置某仓库的用户
  • git 获取远程仓库的分支到本地

    1. git clone xxx
    2. git checkout -b localbranchname origin/remotebranchname
  • react native 直接hack 了 rnpm的功能,现在可以直接react-native link 了。