mac 将.so文件上传到SVN上

1. 打开终端,  在命令行中输入: vi ~/.subversion/config  来打开配置文件.
  2. 然后, 在[miscellany]项找到这个串: 
  # global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo
  #   *.rej *~ #*# .#* .*.swp .DS_Store

  这里的意思是, SVN在提交时自动忽略以这些后缀的文件, 那么我们要去掉*.a这一项, 则将配置文件改为
  global-ignores = *.o *.lo *.la *.al .libs *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store
  保存退出. 就可以了.



如果你想保存,需要先退出编辑模式进入 command 模式。方法是按下esc键。回到 command 模式后,按住shift同时按两次Z来保存并退出。如果你不想保存,在 command 模式输入:quit!并按enter
return直接退出。

:!wq

Axepudding Contact:axepudding@qq.com
原文地址:https://www.cnblogs.com/axepudding/p/8608133.html