Mac使用svn

Mac自带svn,所以直接使用终端工具就可以使用svn。

1. 上传新的代码到服务器

svn import ./youcode svn://xx.xx.xx.xx/path/ --username=xiaoming --password=1234 -m "first commit"

 

2. 从服务器下载

svn checkout svn://xx.xx.xx.xx/path/ --username=xiaoming --password=1234 ./youcode

 

3. 提交更改过的代码到服务器

svn commit -m "modify main.m file"

 

4. 更新服务器的代码到客户端

svn update

你可能感兴趣的:(Mac使用svn)